From 1ec0b68cfdf8fc07bf088f3801076f5ad35d303d Mon Sep 17 00:00:00 2001 From: Tyera Eulberg Date: Thu, 8 Jul 2021 12:18:44 -0600 Subject: [PATCH] Remove dead solana airdrop parameters (#18520) (cherry picked from commit f39ffa69f6c20dac2b94dd238b0e3d1d14aab938) --- cli/src/cli.rs | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/cli/src/cli.rs b/cli/src/cli.rs index 03436390ac46f8..ea22e8c8d57acf 100644 --- a/cli/src/cli.rs +++ b/cli/src/cli.rs @@ -2002,22 +2002,7 @@ pub fn app<'ab, 'v>(name: &str, about: &'ab str, version: &'v str) -> App<'ab, ' .stake_subcommands() .subcommand( SubCommand::with_name("airdrop") - .about("Request lamports") - .arg( - Arg::with_name("faucet_host") - .long("faucet-host") - .value_name("URL") - .takes_value(true) - .help("Faucet host to use [default: the --url host]"), - ) - .arg( - Arg::with_name("faucet_port") - .long("faucet-port") - .value_name("PORT_NUMBER") - .takes_value(true) - .default_value(solana_faucet::faucet::FAUCET_PORT_STR) - .help("Faucet port to use"), - ) + .about("Request SOL from a faucet") .arg( Arg::with_name("amount") .index(1)