diff options
| author | Gavin Andresen <[email protected]> | 2013-11-20 15:54:13 +1000 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-11-20 16:00:51 +1000 |
| commit | 480e75ceabdf83438023d066ed494c371fcef239 (patch) | |
| tree | 3c9913ff526e0c0ecd53094fa786a6fc91409790 /src/init.cpp | |
| parent | Merge pull request #3234 from super3/master (diff) | |
| download | discoin-480e75ceabdf83438023d066ed494c371fcef239.tar.xz discoin-480e75ceabdf83438023d066ed494c371fcef239.zip | |
RPC client option: -rpcwait, to wait for server start
Diffstat (limited to 'src/init.cpp')
| -rw-r--r-- | src/init.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/init.cpp b/src/init.cpp index d930f6f69..b2e7ddf33 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -253,6 +253,7 @@ std::string HelpMessage(HelpMessageMode hmm) if (hmm == HMM_BITCOIND || hmm == HMM_BITCOIN_CLI) { strUsage += " -rpcconnect=<ip> " + _("Send commands to node running on <ip> (default: 127.0.0.1)") + "\n"; + strUsage += " -rpcwait " + _("Wait for RPC server to start") + "\n"; } strUsage += " -rpcuser=<user> " + _("Username for JSON-RPC connections") + "\n"; |