From 3bbf959086ef1546acd10e73bd7df73efa1980b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Wed, 21 Jul 2021 14:24:54 +0100 Subject: [PATCH] Removed port information from bonding notice --- mixnode/src/commands/run.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/mixnode/src/commands/run.rs b/mixnode/src/commands/run.rs index 29d04f246f..5a8ece7f10 100644 --- a/mixnode/src/commands/run.rs +++ b/mixnode/src/commands/run.rs @@ -167,13 +167,11 @@ pub fn execute(matches: &ArgMatches) { Identity key: {} Sphinx key: {} Address: {} - Mix port: {} Version: {} ", identity_keypair.public_key().to_base58_string(), sphinx_keypair.public_key().to_base58_string(), config.get_announce_address(), - config.get_mix_port(), config.get_version(), ); MixNode::new(config, description, identity_keypair, sphinx_keypair).run();