aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgavinandresen <gavinandresen@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-10-11 18:32:33 +0000
committergavinandresen <gavinandresen@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-10-11 18:32:33 +0000
commit77cd030ac3d67c857d8a7a256d1b71b445d60f53 (patch)
tree550f1cf143d332f6d351fbf7ea16a30b35da756f
parented54768f5f90de73c0349684a38df2667f3deae2 (diff)
downloadbitcoin-77cd030ac3d67c857d8a7a256d1b71b445d60f53.tar.xz
Fixed description of -rpcuser/-rpcpassword options.
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@166 1a98c847-1fd6-4fd8-948a-caf3550aa51b
-rw-r--r--init.cpp32
1 files changed, 16 insertions, 16 deletions
diff --git a/init.cpp b/init.cpp
index 94ba99d85f..63ebfb0ad1 100644
--- a/init.cpp
+++ b/init.cpp
@@ -165,22 +165,22 @@ bool AppInit2(int argc, char* argv[])
" bitcoin [options] help \t\t " + _("List commands\n") +
" bitcoin [options] help <command> \t\t " + _("Get help for a command\n") +
_("Options:\n") +
- " -conf=<file> \t " + _("Specify configuration file (default: bitcoin.conf)\n") +
- " -gen \t " + _("Generate coins\n") +
- " -gen=0 \t " + _("Don't generate coins\n") +
- " -min \t " + _("Start minimized\n") +
- " -datadir=<dir> \t " + _("Specify data directory\n") +
- " -proxy=<ip:port>\t " + _("Connect through socks4 proxy\n") +
- " -addnode=<ip> \t " + _("Add a node to connect to\n") +
- " -connect=<ip> \t " + _("Connect only to the specified node\n") +
- " -server \t " + _("Accept command line and JSON-RPC commands\n") +
- " -daemon \t " + _("Run in the background as a daemon and accept commands\n") +
- " -rpcuser \t " + _("Username for JSON-RPC connection\n") +
- " -rpcpassword \t " + _("Password for JSON-RPC connection\n") +
- " -rpcport=<port> \t " + _("Listen for JSON-RPC connections on <port>\n") +
- " -rpcallowip=<ip>\t " + _("Allow JSON-RPC connections from specified IP address\n") +
- " -rpcconnect=<ip>\t " + _("Send commands to node running on <ip>\n") +
- " -? \t " + _("This help message\n");
+ " -conf=<file> \t " + _("Specify configuration file (default: bitcoin.conf)\n") +
+ " -gen \t " + _("Generate coins\n") +
+ " -gen=0 \t " + _("Don't generate coins\n") +
+ " -min \t " + _("Start minimized\n") +
+ " -datadir=<dir> \t " + _("Specify data directory\n") +
+ " -proxy=<ip:port> \t " + _("Connect through socks4 proxy\n") +
+ " -addnode=<ip> \t " + _("Add a node to connect to\n") +
+ " -connect=<ip> \t " + _("Connect only to the specified node\n") +
+ " -server \t " + _("Accept command line and JSON-RPC commands\n") +
+ " -daemon \t " + _("Run in the background as a daemon and accept commands\n") +
+ " -rpcuser=<user> \t " + _("Username for JSON-RPC connections\n") +
+ " -rpcpassword=<pw>\t " + _("Password for JSON-RPC connections\n") +
+ " -rpcport=<port> \t " + _("Listen for JSON-RPC connections on <port>\n") +
+ " -rpcallowip=<ip> \t " + _("Allow JSON-RPC connections from specified IP address\n") +
+ " -rpcconnect=<ip> \t " + _("Send commands to node running on <ip>\n") +
+ " -? \t " + _("This help message\n");
#ifdef USE_SSL
strUsage += string() +