diff --git a/account_manager/src/validator/create.rs b/account_manager/src/validator/create.rs index 863cbf1c054..a779a2881d4 100644 --- a/account_manager/src/validator/create.rs +++ b/account_manager/src/validator/create.rs @@ -140,6 +140,7 @@ 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 8b4a216e857..09459c578f2 100644 --- a/account_manager/src/validator/import.rs +++ b/account_manager/src/validator/import.rs @@ -86,6 +86,7 @@ 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 dd97de156da..600fa420f63 100644 --- a/account_manager/src/validator/list.rs +++ b/account_manager/src/validator/list.rs @@ -10,6 +10,7 @@ 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 mgr = ValidatorManager::open(&validator_dir) .map_err(|e| format!("Unable to read --{}: {:?}", VALIDATOR_DIR_FLAG, e))?; diff --git a/account_manager/src/validator/recover.rs b/account_manager/src/validator/recover.rs index ecea0efbdd0..b595cc64022 100644 --- a/account_manager/src/validator/recover.rs +++ b/account_manager/src/validator/recover.rs @@ -88,6 +88,9 @@ 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)?; ensure_dir_exists(&secrets_dir)?; diff --git a/account_manager/src/validator/slashing_protection.rs b/account_manager/src/validator/slashing_protection.rs index 53a7edd513e..c376c4f4d33 100644 --- a/account_manager/src/validator/slashing_protection.rs +++ b/account_manager/src/validator/slashing_protection.rs @@ -44,6 +44,7 @@ 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 genesis_validators_root = env diff --git a/book/src/voluntary-exit.md b/book/src/voluntary-exit.md index 6c0d634c18a..7fc9da0765d 100644 --- a/book/src/voluntary-exit.md +++ b/book/src/voluntary-exit.md @@ -23,19 +23,12 @@ To understand the phased rollout strategy for Eth2, please visit