Browse Source

Notify maker_cfd::Actor about new taker

Fixes #239.
compile-for-aarch64
Thomas Eizinger 3 years ago
parent
commit
b103a21228
No known key found for this signature in database GPG Key ID: 651AC83A6C6C8B96
  1. 5
      daemon/src/maker_inc_connections.rs

5
daemon/src/maker_inc_connections.rs

@ -128,6 +128,11 @@ impl Actor {
.spawn_global();
self.write_connections.insert(taker_id, out_msg_actor);
let _ = self
.cfd_actor
.send(maker_cfd::NewTakerOnline { id: taker_id })
.await;
}
}

Loading…
Cancel
Save