aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoin-cli.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2015-11-09 14:10:59 +0100
committerWladimir J. van der Laan <laanwj@gmail.com>2015-11-09 14:19:39 +0100
commit3b89bf643896474e41047fef16d12cf03c860559 (patch)
tree043a9a0c00f5db23497107b93941c55406b1829f /src/bitcoin-cli.cpp
parentcbc4e3bd37daa1512bbecc39e573e9fc7198b589 (diff)
parent8b3311fb8d99fce4835e4a7f0ae0e9cdd0e40db8 (diff)
downloadbitcoin-3b89bf643896474e41047fef16d12cf03c860559.tar.xz
Merge pull request #6953
8b3311f *: alias -h for --help (Daniel Cousens) 97546fc Change URLs to https in debian/control (Matt Corallo) 38671bf Update debian/changelog and slight tweak to debian/control (Matt Corallo) 256321e Correct spelling mistakes in doc folder (Mitchell Cash) eae0350 Clarification of unit test build instructions. (Eric Lombrozo) 90897ab Update bluematt-key, the old one is long-since revoked (Matt Corallo) a2f2fb6 build: disable -Wself-assign (Wladimir J. van der Laan) cf67d8b Bugfix: Allow mining on top of old tip blocks for testnet (fixes testnet-in-a-box use case) (Luke Dashjr) b3964e3 Drop "with minimal dependencies" from description (Zak Wilcox) 43c2789 Split bitcoin-tx into its own package (Zak Wilcox) dfe0d4d Include bitcoin-tx binary on Debian/Ubuntu (Zak Wilcox) 612efe8 [Qt] Raise debug window when requested (MarcoFalke) 3ad96bd Fix locking in GetTransaction. (Alex Morcos) 9c81005 Fix spelling of Qt (Diego Viola)
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 ea349b197e..9c85db8c6d 100644
--- a/src/bitcoin-cli.cpp
+++ b/src/bitcoin-cli.cpp
@@ -66,7 +66,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" +