Browse Source
Migrate `do_send_async` to `send`
This cannot fail, nothing left to do.
pAndLAndPayout
Thomas Eizinger
3 years ago
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96
1 changed files with
1 additions and
1 deletions
-
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)?; |
|
|
|
|
|
|
|