swap id key for sphinx key

This commit is contained in:
Simon Wicky
2023-07-24 16:54:08 +02:00
parent eca406d9a7
commit dc77e3f962
5 changed files with 19 additions and 24 deletions
+1 -9
View File
@@ -164,7 +164,7 @@ impl MixNode {
packet_processor,
delay_forwarding_channel,
topology_access,
&self.identity_keypair,
&self.sphinx_keypair,
);
let listening_address = SocketAddr::new(
@@ -325,14 +325,6 @@ impl MixNode {
if self.check_if_bonded().await {
warn!("You seem to have bonded your mixnode before starting it - that's highly unrecommended as in the future it might result in slashing");
}
println!(
"Secret key start : {:?}",
self.identity_keypair.private_key().to_bytes()
);
println!(
"Public key start : {:?}",
self.identity_keypair.public_key().to_bytes()
);
let shutdown = TaskManager::default();