Cleanup CLI types (#8888)

This commit is contained in:
Greg Fitzgerald
2020-03-16 12:27:09 -06:00
committed by GitHub
parent dc347dd3d7
commit 563da2bb18
3 changed files with 6 additions and 6 deletions

View File

@ -224,9 +224,9 @@ fn main() -> Result<(), Box<dyn error::Error>> {
.arg(
Arg::with_name("keypair")
.index(2)
.value_name("FILEPATH")
.value_name("KEYPAIR")
.takes_value(true)
.help("Path to keypair file"),
.help("Filepath or URL to a keypair"),
)
)
.subcommand(
@ -321,9 +321,9 @@ fn main() -> Result<(), Box<dyn error::Error>> {
.arg(
Arg::with_name("keypair")
.index(1)
.value_name("FILEPATH")
.value_name("KEYPAIR")
.takes_value(true)
.help("Path to keypair file or remote wallet"),
.help("Filepath or URL to a keypair"),
)
.arg(
Arg::with_name(SKIP_SEED_PHRASE_VALIDATION_ARG.name)