Browse Source

Migrate `do_send_async` to `send`

Handling the `Sync` message is quick because we internally use
concurrency to fetch attestations and announcement. This will not
actually block startup.
pAndLAndPayout
Thomas Eizinger 3 years ago
parent
commit
ec8e4d6c6a
No known key found for this signature in database GPG Key ID: 651AC83A6C6C8B96
  1. 2
      daemon/src/lib.rs

2
daemon/src/lib.rs

@ -170,7 +170,7 @@ where
.spawn_with_handle(),
);
oracle_addr.do_send_async(oracle::Sync).await?;
oracle_addr.send(oracle::Sync).await?;
tracing::debug!("Maker actor system ready");

Loading…
Cancel
Save