diff options
| author | Wladimir J. van der Laan <[email protected]> | 2015-10-22 17:51:13 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2015-10-22 17:53:07 +0200 |
| commit | 2cd020d054d6ec4b50eb44ffa4000b40540a4db0 (patch) | |
| tree | 21f35c08c8199f44974b5a3edc6f7c737fd09625 /src/bitcoin-tx.cpp | |
| parent | Merge pull request #6854 (diff) | |
| parent | *: alias -h for --help (diff) | |
| download | discoin-2cd020d054d6ec4b50eb44ffa4000b40540a4db0.tar.xz discoin-2cd020d054d6ec4b50eb44ffa4000b40540a4db0.zip | |
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 5630d20cc..3330fe5d1 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" + |