Browse Source
Notify maker_cfd::Actor about new taker
Fixes #239.
compile-for-aarch64
Thomas Eizinger
3 years ago
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96
1 changed files with
5 additions and
0 deletions
-
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; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|