From 9a5d0cc45c095dc5bb735427713fcccacf3454ce Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Fri, 25 Sep 2015 18:01:25 -0300 Subject: [PATCH] missing -public_server_mode from help --- src/init.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/init.cpp b/src/init.cpp index 790f9e77..ce9b97ce 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -237,6 +237,7 @@ std::string HelpMessage() 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: 10)") + "\n"; + strUsage += " -public_server_mode " + _("Limit JSON-RPC execution to public/safe commands only.") + "\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";