From cc5627f0c3791e19e03bee2ed2f67867930c549f Mon Sep 17 00:00:00 2001 From: Jedrzej Stuczynski Date: Mon, 3 Feb 2020 09:57:06 +0000 Subject: [PATCH] Notice regarding client address --- nym-client/src/commands/run.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nym-client/src/commands/run.rs b/nym-client/src/commands/run.rs index 4b564b0918..6568009d70 100644 --- a/nym-client/src/commands/run.rs +++ b/nym-client/src/commands/run.rs @@ -1,7 +1,7 @@ use crate::client::NymClient; use crate::commands::overwrite_config; use crate::config::persistance::pathfinder::ClientPathfinder; -use crate::config::{Config, SocketType}; +use crate::config::Config; use clap::ArgMatches; use config::NymConfig; use pemstore::pemstore::PemStore; @@ -20,7 +20,7 @@ pub fn execute(matches: &ArgMatches) { .expect("Failed to read stored identity key files"); println!( - "Public key: {}", + "Public identity key: {}\nFor time being, it is identical to address", identity_keypair.public_key.to_base58_string() );