|
|
@ -194,11 +194,11 @@ std::string HelpMessage() |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
strUsage += " -paytxfee=<amt> " + _("Fee per KB to add to transactions you send") + "\n"; |
|
|
|
strUsage += " -paytxfee=<amt> " + _("Fee per KB to add to transactions you send") + "\n"; |
|
|
|
#ifdef QT_GUI |
|
|
|
if (fHaveGUI) |
|
|
|
strUsage += " -server " + _("Accept command line and JSON-RPC commands") + "\n"; |
|
|
|
strUsage += " -server " + _("Accept command line and JSON-RPC commands") + "\n"; |
|
|
|
#endif |
|
|
|
#if !defined(WIN32) |
|
|
|
#if !defined(WIN32) && !defined(QT_GUI) |
|
|
|
if (fHaveGUI) |
|
|
|
strUsage += " -daemon " + _("Run in the background as a daemon and accept commands") + "\n"; |
|
|
|
strUsage += " -daemon " + _("Run in the background as a daemon and accept commands") + "\n"; |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
strUsage += " -testnet " + _("Use the test network") + "\n"; |
|
|
|
strUsage += " -testnet " + _("Use the test network") + "\n"; |
|
|
|
strUsage += " -debug " + _("Output extra debugging information. Implies all other -debug* options") + "\n"; |
|
|
|
strUsage += " -debug " + _("Output extra debugging information. Implies all other -debug* options") + "\n"; |
|
|
@ -213,9 +213,8 @@ std::string HelpMessage() |
|
|
|
strUsage += " -rpcpassword=<pw> " + _("Password for JSON-RPC connections") + "\n"; |
|
|
|
strUsage += " -rpcpassword=<pw> " + _("Password for JSON-RPC connections") + "\n"; |
|
|
|
strUsage += " -rpcport=<port> " + _("Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332)") + "\n"; |
|
|
|
strUsage += " -rpcport=<port> " + _("Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332)") + "\n"; |
|
|
|
strUsage += " -rpcallowip=<ip> " + _("Allow JSON-RPC connections from specified IP address") + "\n"; |
|
|
|
strUsage += " -rpcallowip=<ip> " + _("Allow JSON-RPC connections from specified IP address") + "\n"; |
|
|
|
#ifndef QT_GUI |
|
|
|
if (!fHaveGUI) |
|
|
|
strUsage += " -rpcconnect=<ip> " + _("Send commands to node running on <ip> (default: 127.0.0.1)") + "\n"; |
|
|
|
strUsage += " -rpcconnect=<ip> " + _("Send commands to node running on <ip> (default: 127.0.0.1)") + "\n"; |
|
|
|
#endif |
|
|
|
|
|
|
|
strUsage += " -rpcthreads=<n> " + _("Set the number of threads to service RPC calls (default: 4)") + "\n"; |
|
|
|
strUsage += " -rpcthreads=<n> " + _("Set the number of threads to service RPC calls (default: 4)") + "\n"; |
|
|
|
strUsage += " -blocknotify=<cmd> " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n"; |
|
|
|
strUsage += " -blocknotify=<cmd> " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n"; |
|
|
|
strUsage += " -walletnotify=<cmd> " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n"; |
|
|
|
strUsage += " -walletnotify=<cmd> " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n"; |
|
|
@ -435,9 +434,8 @@ bool AppInit2(boost::thread_group& threadGroup) |
|
|
|
fServer = GetBoolArg("-server", false); |
|
|
|
fServer = GetBoolArg("-server", false); |
|
|
|
|
|
|
|
|
|
|
|
/* force fServer when running without GUI */ |
|
|
|
/* force fServer when running without GUI */ |
|
|
|
#if !defined(QT_GUI) |
|
|
|
if (!fHaveGUI) |
|
|
|
fServer = true; |
|
|
|
fServer = true; |
|
|
|
#endif |
|
|
|
|
|
|
|
fPrintToConsole = GetBoolArg("-printtoconsole", false); |
|
|
|
fPrintToConsole = GetBoolArg("-printtoconsole", false); |
|
|
|
fPrintToDebugger = GetBoolArg("-printtodebugger", false); |
|
|
|
fPrintToDebugger = GetBoolArg("-printtodebugger", false); |
|
|
|
fLogTimestamps = GetBoolArg("-logtimestamps", false); |
|
|
|
fLogTimestamps = GetBoolArg("-logtimestamps", false); |
|
|
|