From 46a37642563062992d27cb05303f6a25737ef89e Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Sat, 23 Nov 2019 18:18:39 +1100 Subject: [PATCH] Remove old bootstrap flag from val CLI --- validator_client/src/cli.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/validator_client/src/cli.rs b/validator_client/src/cli.rs index bd5a93f6fa..1173588fff 100644 --- a/validator_client/src/cli.rs +++ b/validator_client/src/cli.rs @@ -21,12 +21,6 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> { .subcommand(SubCommand::with_name("testnet") .about("Starts a testnet validator using INSECURE, predicatable private keys, based off the canonical \ validator index. ONLY USE FOR TESTING PURPOSES!") - .arg( - Arg::with_name("bootstrap") - .short("b") - .long("bootstrap") - .help("Connect to the RPC server to download the eth2_config via the HTTP API.") - ) .subcommand(SubCommand::with_name("insecure") .about("Uses the standard, predicatable `interop` keygen method to produce a range \ of predicatable private keys and starts performing their validator duties.")