diff --git a/clients/native/src/client/mod.rs b/clients/native/src/client/mod.rs index 841eeb6643..e0809457da 100644 --- a/clients/native/src/client/mod.rs +++ b/clients/native/src/client/mod.rs @@ -360,7 +360,6 @@ impl NymClient { // sphinx_message_sender is the transmitter for any component generating sphinx packets that are to be sent to the mixnet // they are used by cover traffic stream and real traffic stream // sphinx_message_receiver is the receiver used by MixTrafficController that sends the actual traffic - // WIP(JON): move creating this to the mix traffic controller let (sphinx_message_sender, sphinx_message_receiver) = tokio::sync::mpsc::channel(MIX_MESSAGE_RECEIVER_BUFFER_SIZE); diff --git a/clients/socks5/src/client/mod.rs b/clients/socks5/src/client/mod.rs index 5596dc6ce2..87e6173253 100644 --- a/clients/socks5/src/client/mod.rs +++ b/clients/socks5/src/client/mod.rs @@ -349,7 +349,6 @@ impl NymClient { // sphinx_message_sender is the transmitter for any component generating sphinx packets that are to be sent to the mixnet // they are used by cover traffic stream and real traffic stream // sphinx_message_receiver is the receiver used by MixTrafficController that sends the actual traffic - // WIP(JON): move creating this into MixTrafficController let (sphinx_message_sender, sphinx_message_receiver) = tokio::sync::mpsc::channel(MIX_MESSAGE_RECEIVER_BUFFER_SIZE);