Browse Source
Use xtra_productivity for maker_cfd::NewOrder
debug-collab-settlement
Thomas Eizinger
3 years ago
No known key found for this signature in database
GPG Key ID: 651AC83A6C6C8B96
1 changed files with
3 additions and
7 deletions
-
daemon/src/maker_cfd.rs
|
|
@ -993,12 +993,12 @@ where |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
#[async_trait] |
|
|
|
impl<O: 'static, M: 'static, T: 'static, W: 'static> Handler<NewOrder> for Actor<O, M, T, W> |
|
|
|
#[xtra_productivity] |
|
|
|
impl<O, M, T, W> Actor<O, M, T, W> |
|
|
|
where |
|
|
|
T: xtra::Handler<maker_inc_connections::BroadcastOrder>, |
|
|
|
{ |
|
|
|
async fn handle(&mut self, msg: NewOrder, _ctx: &mut Context<Self>) -> Result<()> { |
|
|
|
async fn handle_new_order(&mut self, msg: NewOrder) -> Result<()> { |
|
|
|
let NewOrder { |
|
|
|
price, |
|
|
|
min_quantity, |
|
|
@ -1166,10 +1166,6 @@ where |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
impl Message for NewOrder { |
|
|
|
type Result = Result<()>; |
|
|
|
} |
|
|
|
|
|
|
|
impl Message for TakerConnected { |
|
|
|
type Result = (); |
|
|
|
} |
|
|
|