From 10152506fe60071f36c588b52c94ec55f938ae01 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 20 Jan 2011 11:49:29 -0800 Subject: [PATCH] The --help text wasn't showing the default values for three of the options, as follows: -rpcport (default: 8332) -rpcconnect (default: 127.0.0.1) -keypool (default: 100) Edited the --help text to include the defaults. --- init.cpp | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/init.cpp b/init.cpp index e114d80..ebc3dc3 100644 --- a/init.cpp +++ b/init.cpp @@ -179,10 +179,10 @@ bool AppInit2(int argc, char* argv[]) " -testnet \t\t " + _("Use the test network\n") + " -rpcuser= \t " + _("Username for JSON-RPC connections\n") + " -rpcpassword=\t " + _("Password for JSON-RPC connections\n") + - " -rpcport= \t\t " + _("Listen for JSON-RPC connections on \n") + + " -rpcport= \t\t " + _("Listen for JSON-RPC connections on (default: 8332)\n") + " -rpcallowip= \t\t " + _("Allow JSON-RPC connections from specified IP address\n") + - " -rpcconnect= \t " + _("Send commands to node running on \n") + - " -keypool= \t " + _("Set key pool size to \n") + + " -rpcconnect= \t " + _("Send commands to node running on (default: 127.0.0.1)\n") + + " -keypool= \t " + _("Set key pool size to (default: 100)\n") + " -nolisten \t " + _("Don't accept connections from outside"); #ifdef USE_SSL -- 1.7.1