Remove dead solana airdrop parameters (#18520)
This commit is contained in:
parent
2867584985
commit
f39ffa69f6
|
@ -2023,22 +2023,7 @@ pub fn app<'ab, 'v>(name: &str, about: &'ab str, version: &'v str) -> App<'ab, '
|
||||||
.stake_subcommands()
|
.stake_subcommands()
|
||||||
.subcommand(
|
.subcommand(
|
||||||
SubCommand::with_name("airdrop")
|
SubCommand::with_name("airdrop")
|
||||||
.about("Request lamports")
|
.about("Request SOL from a faucet")
|
||||||
.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"),
|
|
||||||
)
|
|
||||||
.arg(
|
.arg(
|
||||||
Arg::with_name("amount")
|
Arg::with_name("amount")
|
||||||
.index(1)
|
.index(1)
|
||||||
|
|
Loading…
Reference in New Issue