Removed all sphinx key caching from mixnodes and gateways (#713)
* Removed all sphinx key caching from mixnodes and gateways * Missing change in network monitor
This commit is contained in:
committed by
GitHub
parent
fdd34863ba
commit
fb253e53a4
@@ -101,11 +101,8 @@ impl MixNode {
|
||||
) {
|
||||
info!("Starting socket listener...");
|
||||
|
||||
let packet_processor = PacketProcessor::new(
|
||||
self.sphinx_keypair.private_key(),
|
||||
node_stats_update_sender,
|
||||
self.config.get_cache_entry_ttl(),
|
||||
);
|
||||
let packet_processor =
|
||||
PacketProcessor::new(self.sphinx_keypair.private_key(), node_stats_update_sender);
|
||||
|
||||
let connection_handler = ConnectionHandler::new(packet_processor, delay_forwarding_channel);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user