From 2bb8a7f592c83e760715ae65f48633164208b918 Mon Sep 17 00:00:00 2001 From: Lucas Soriano del Pino Date: Wed, 20 Oct 2021 16:32:19 +1100 Subject: [PATCH] Remove superfluous Send trait bound The trait `xtra::MessageChannel` already implies Send. Co-authored-by: Mariusz Klochowicz --- daemon/src/taker_cfd.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/src/taker_cfd.rs b/daemon/src/taker_cfd.rs index 31b63c9..b0ac74d 100644 --- a/daemon/src/taker_cfd.rs +++ b/daemon/src/taker_cfd.rs @@ -92,7 +92,7 @@ impl Actor { cfd_feed_actor_inbox: watch::Sender>, order_feed_actor_inbox: watch::Sender>, update_cfd_feed_sender: watch::Sender, - send_to_maker: Box + Send>, + send_to_maker: Box>, monitor_actor: Address, oracle_actor: Address, ) -> Self {