cli/wallet: improve wallet flag help text, fix #2820
This commit is contained in:
parent
85b69141f7
commit
b1723f1a79
1 changed files with 2 additions and 2 deletions
|
@ -51,11 +51,11 @@ var (
|
||||||
var (
|
var (
|
||||||
walletPathFlag = cli.StringFlag{
|
walletPathFlag = cli.StringFlag{
|
||||||
Name: "wallet, w",
|
Name: "wallet, w",
|
||||||
Usage: "Target location of the wallet file ('-' to read from stdin); conflicts with --wallet-config flag.",
|
Usage: "Path to the wallet file ('-' to read from stdin); conflicts with --wallet-config flag.",
|
||||||
}
|
}
|
||||||
walletConfigFlag = cli.StringFlag{
|
walletConfigFlag = cli.StringFlag{
|
||||||
Name: "wallet-config",
|
Name: "wallet-config",
|
||||||
Usage: "Target location of the wallet config file; conflicts with --wallet flag.",
|
Usage: "Path to the wallet config file; conflicts with --wallet flag.",
|
||||||
}
|
}
|
||||||
wifFlag = cli.StringFlag{
|
wifFlag = cli.StringFlag{
|
||||||
Name: "wif",
|
Name: "wif",
|
||||||
|
|
Loading…
Reference in a new issue