From 30754d8a0f2d6f04d1d8206a3179885ebeb04fa7 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Mon, 18 May 2015 22:00:01 -0300 Subject: [PATCH] update -rpcthreads help (default is 10 not 4) --- src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/init.cpp b/src/init.cpp index 88dce88b..eed93598 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -236,7 +236,7 @@ std::string HelpMessage() strUsage += " -rpcallowip= " + _("Allow JSON-RPC connections from specified IP address") + "\n"; if (!fHaveGUI) strUsage += " -rpcconnect= " + _("Send commands to node running on (default: 127.0.0.1)") + "\n"; - strUsage += " -rpcthreads= " + _("Set the number of threads to service RPC calls (default: 4)") + "\n"; + strUsage += " -rpcthreads= " + _("Set the number of threads to service RPC calls (default: 10)") + "\n"; strUsage += " -blocknotify= " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n"; strUsage += " -walletnotify= " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n"; strUsage += " -alertnotify= " + _("Execute command when a relevant alert is received (%s in cmd is replaced by message)") + "\n";