diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-10-22 07:18:19 -0700 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-10-22 07:18:19 -0700 |
| commit | b3dd90c1227919c5d4fd6a77961da36f3f35ac8c (patch) | |
| tree | 6fdc3d8091214e1423a7c3f3c8bdc9a2a86a576d /src/bitcoind.cpp | |
| parent | Merge pull request #2740 from constantined/constantined (diff) | |
| parent | Add separate bitcoin-rpc client (diff) | |
| download | discoin-b3dd90c1227919c5d4fd6a77961da36f3f35ac8c.tar.xz discoin-b3dd90c1227919c5d4fd6a77961da36f3f35ac8c.zip | |
Merge pull request #3082 from laanwj/2013_10_rpccli3
Add separate bitcoin-rpc client
Diffstat (limited to 'src/bitcoind.cpp')
| -rw-r--r-- | src/bitcoind.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index 1b40a868a..fbacbd2e2 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -57,12 +57,13 @@ bool AppInit(int argc, char* argv[]) // First part of help message is specific to bitcoind / RPC client std::string strUsage = _("Bitcoin version") + " " + FormatFullVersion() + "\n\n" + _("Usage:") + "\n" + - " bitcoind [options] " + "\n" + - " bitcoind [options] <command> [params] " + _("Send command to -server or bitcoind") + "\n" + + " bitcoind [options] " + _("Start Bitcoin server") + "\n" + + _("Usage (deprecated, use bitcoin-cli):") + "\n" + + " bitcoind [options] <command> [params] " + _("Send command to Bitcoin server") + "\n" + " bitcoind [options] help " + _("List commands") + "\n" + " bitcoind [options] help <command> " + _("Get help for a command") + "\n"; - strUsage += "\n" + HelpMessage(); + strUsage += "\n" + HelpMessage(HMM_BITCOIND); fprintf(stdout, "%s", strUsage.c_str()); return false; |