diff --git a/mixnet/src/node.rs b/mixnet/src/node.rs index 5bd6903a..2c2e57f9 100644 --- a/mixnet/src/node.rs +++ b/mixnet/src/node.rs @@ -17,7 +17,6 @@ pub struct MixNode { } struct MixNodeRunner { - _config: MixNodeConfig, encryption_private_key: PrivateKey, poisson: Poisson, packet_queue: mpsc::Receiver, @@ -50,7 +49,6 @@ impl MixNode { let (output_tx, output_rx) = mpsc::unbounded_channel(); let mixnode_runner = MixNodeRunner { - _config: config, encryption_private_key, poisson, packet_queue: packet_rx,