remove unnecessary field

This commit is contained in:
Youngjoon Lee 2024-03-25 22:18:02 +09:00
parent f2e3a02306
commit a9bdab28d3
No known key found for this signature in database
GPG Key ID: 7E8EE3EC8D5CEBA2
1 changed files with 0 additions and 2 deletions

View File

@ -17,7 +17,6 @@ pub struct MixNode {
}
struct MixNodeRunner {
_config: MixNodeConfig,
encryption_private_key: PrivateKey,
poisson: Poisson,
packet_queue: mpsc::Receiver<PacketBody>,
@ -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,