diff --git a/account_manager/src/validator/create.rs b/account_manager/src/validator/create.rs index 95a4e8b2f..024865123 100644 --- a/account_manager/src/validator/create.rs +++ b/account_manager/src/validator/create.rs @@ -140,7 +140,6 @@ pub fn cli_run( ensure_dir_exists(&validator_dir)?; ensure_dir_exists(&secrets_dir)?; - eprintln!("validator-dir path: {:?}", validator_dir); eprintln!("secrets-dir path {:?}", secrets_dir); eprintln!("wallets-dir path {:?}", wallet_base_dir); diff --git a/account_manager/src/validator/import.rs b/account_manager/src/validator/import.rs index 1a9790cad..93d273b91 100644 --- a/account_manager/src/validator/import.rs +++ b/account_manager/src/validator/import.rs @@ -94,7 +94,6 @@ pub fn cli_run(matches: &ArgMatches, validator_dir: PathBuf) -> Result<(), Strin ) })?; - eprintln!("validator-dir path: {:?}", validator_dir); // Collect the paths for the keystores that should be imported. let keystore_paths = match (keystore, keystores_dir) { (Some(keystore), None) => vec![keystore], diff --git a/account_manager/src/validator/list.rs b/account_manager/src/validator/list.rs index 60173ec5e..338572836 100644 --- a/account_manager/src/validator/list.rs +++ b/account_manager/src/validator/list.rs @@ -9,7 +9,6 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> { } pub fn cli_run(validator_dir: PathBuf) -> Result<(), String> { - eprintln!("validator-dir path: {:?}", validator_dir); let validator_definitions = ValidatorDefinitions::open(&validator_dir).map_err(|e| { format!( "No validator definitions found in {:?}: {:?}", diff --git a/account_manager/src/validator/recover.rs b/account_manager/src/validator/recover.rs index 43fb60bbb..2a20961c1 100644 --- a/account_manager/src/validator/recover.rs +++ b/account_manager/src/validator/recover.rs @@ -88,7 +88,6 @@ pub fn cli_run(matches: &ArgMatches, validator_dir: PathBuf) -> Result<(), Strin let mnemonic_path: Option = clap_utils::parse_optional(matches, MNEMONIC_FLAG)?; let stdin_inputs = matches.is_present(STDIN_INPUTS_FLAG); - eprintln!("validator-dir path: {:?}", validator_dir); eprintln!("secrets-dir path: {:?}", secrets_dir); ensure_dir_exists(&validator_dir)?; diff --git a/account_manager/src/validator/slashing_protection.rs b/account_manager/src/validator/slashing_protection.rs index 30f0ab887..95876aa89 100644 --- a/account_manager/src/validator/slashing_protection.rs +++ b/account_manager/src/validator/slashing_protection.rs @@ -45,7 +45,6 @@ pub fn cli_run( env: Environment, validator_base_dir: PathBuf, ) -> Result<(), String> { - eprintln!("validator-dir path: {:?}", validator_base_dir); let slashing_protection_db_path = validator_base_dir.join(SLASHING_PROTECTION_FILENAME); let testnet_config = env