Browse Source

Migrate `do_send_async` to `send`

This cannot fail, nothing left to do.
pAndLAndPayout
Thomas Eizinger 3 years ago
parent
commit
e448f37442
No known key found for this signature in database GPG Key ID: 651AC83A6C6C8B96
  1. 2
      daemon/src/maker_cfd.rs

2
daemon/src/maker_cfd.rs

@ -467,7 +467,7 @@ where
// have to remove the current order.
self.current_order_id = None;
self.takers
.do_send_async(maker_inc_connections::BroadcastOrder(None))
.send(maker_inc_connections::BroadcastOrder(None))
.await?;
self.order_feed_sender.send(None)?;

Loading…
Cancel
Save