Cleanup CLI help message (#9632)

automerge
This commit is contained in:
Greg Fitzgerald
2020-04-21 17:09:34 -06:00
committed by GitHub
parent 111a86f3ec
commit cbc7b3b0b7

View File

@ -1,11 +1,11 @@
macro_rules! ACCOUNT_STRING { macro_rules! ACCOUNT_STRING {
() => { () => {
r#"Can be: r#", one of:
* a bs58 pubkey string * a base58-encoded public key
* path to keypair file * a path to a keypair file
* '-' to take json-encoded keypair string from stdin * a hyphen; signals a JSON-encoded keypair on stdin
* 'ASK' to ask for a passphrase * the 'ASK' keyword; to recover a keypair via its seed phrase
* path to hardware wallet (usb://..)"# * a hardware wallet keypair URL (i.e. usb://ledger)"#
}; };
} }