We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9330e11 commit 47ae543Copy full SHA for 47ae543
account_manager/src/validator/create.rs
@@ -137,18 +137,6 @@ pub fn cli_run<T: EthSpec>(
137
let count: Option<usize> = clap_utils::parse_optional(matches, COUNT_FLAG)?;
138
let at_most: Option<usize> = clap_utils::parse_optional(matches, AT_MOST_FLAG)?;
139
140
- // The command will always fail if the wallet dir does not exist.
141
- if !wallet_base_dir.exists() {
142
- return Err(format!(
143
- "No wallet directory at {:?}. Use the `lighthouse --network {} {} {} {}` command to create a wallet",
144
- wallet_base_dir,
145
- matches.value_of("network").unwrap_or("<NETWORK>"),
146
- crate::CMD,
147
- crate::wallet::CMD,
148
- crate::wallet::create::CMD
149
- ));
150
- }
151
-
152
ensure_dir_exists(&validator_dir)?;
153
ensure_dir_exists(&secrets_dir)?;
154
0 commit comments