diff options
author | Daniel Cousens <github@dcousens.com> | 2015-10-18 21:02:36 +1100 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2015-10-23 03:24:59 +0000 |
commit | af6edac0bd637c07a9eb2cbb0dd1498b3593f801 (patch) | |
tree | d22960024aeb41e6a1c28d4b267c085e3d1b1d9a /src/bitcoind.cpp | |
parent | 131d7f997c6b59daa69a31d496162b9a9f8d60bf (diff) |
*: alias -h for --help
Diffstat (limited to 'src/bitcoind.cpp')
-rw-r--r-- | src/bitcoind.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index cce687ac98..6e2758a9d2 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -67,7 +67,7 @@ bool AppInit(int argc, char* argv[]) ParseParameters(argc, argv); // Process help and version before taking care about datadir - if (mapArgs.count("-?") || mapArgs.count("-help") || mapArgs.count("-version")) + if (mapArgs.count("-?") || mapArgs.count("-h") || mapArgs.count("-help") || mapArgs.count("-version")) { std::string strUsage = _("Bitcoin Core Daemon") + " " + _("version") + " " + FormatFullVersion() + "\n"; |