aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoin-cli.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-10-22 17:51:13 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2015-10-22 17:53:07 +0200
commit2cd020d054d6ec4b50eb44ffa4000b40540a4db0 (patch)
tree21f35c08c8199f44974b5a3edc6f7c737fd09625 /src/bitcoin-cli.cpp
parenta09297010e171af28a7a3fcad65a4e0aefea53ba (diff)
parent3cb56f37780854bf26650e0872a556da25897a0a (diff)
downloadbitcoin-2cd020d054d6ec4b50eb44ffa4000b40540a4db0.tar.xz
Merge pull request #6846
3cb56f3 *: alias -h for --help (Daniel Cousens)
Diffstat (limited to 'src/bitcoin-cli.cpp')
-rw-r--r--src/bitcoin-cli.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp
index 364baf9d13..6f22c70494 100644
--- a/src/bitcoin-cli.cpp
+++ b/src/bitcoin-cli.cpp
@@ -67,7 +67,7 @@ static bool AppInitRPC(int argc, char* argv[])
// Parameters
//
ParseParameters(argc, argv);
- if (argc<2 || mapArgs.count("-?") || mapArgs.count("-help") || mapArgs.count("-version")) {
+ if (argc<2 || mapArgs.count("-?") || mapArgs.count("-h") || mapArgs.count("-help") || mapArgs.count("-version")) {
std::string strUsage = _("Bitcoin Core RPC client version") + " " + FormatFullVersion() + "\n";
if (!mapArgs.count("-version")) {
strUsage += "\n" + _("Usage:") + "\n" +