diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-10-22 17:51:13 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-10-22 17:53:07 +0200 |
commit | 2cd020d054d6ec4b50eb44ffa4000b40540a4db0 (patch) | |
tree | 21f35c08c8199f44974b5a3edc6f7c737fd09625 /src/bitcoin-tx.cpp | |
parent | a09297010e171af28a7a3fcad65a4e0aefea53ba (diff) | |
parent | 3cb56f37780854bf26650e0872a556da25897a0a (diff) |
Merge pull request #6846
3cb56f3 *: alias -h for --help (Daniel Cousens)
Diffstat (limited to 'src/bitcoin-tx.cpp')
-rw-r--r-- | src/bitcoin-tx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-tx.cpp b/src/bitcoin-tx.cpp index 5630d20cc5..3330fe5d12 100644 --- a/src/bitcoin-tx.cpp +++ b/src/bitcoin-tx.cpp @@ -44,7 +44,7 @@ static bool AppInitRawTx(int argc, char* argv[]) fCreateBlank = GetBoolArg("-create", false); - if (argc<2 || mapArgs.count("-?") || mapArgs.count("-help")) + if (argc<2 || mapArgs.count("-?") || mapArgs.count("-h") || mapArgs.count("-help")) { // First part of help message is specific to this utility std::string strUsage = _("Bitcoin Core bitcoin-tx utility version") + " " + FormatFullVersion() + "\n\n" + |