From 212b42c62350aa46661fe058fffbf8d9c36599e4 Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Thu, 11 Apr 2013 22:27:14 +0200 Subject: [PATCH] qt: don't show rpcconnect command line option in help GUI can't connect to RPC. Showing this option in the help confuses people, so remove it. --- src/init.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/init.cpp b/src/init.cpp index 70a923338..f6485c3b1 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -333,7 +333,9 @@ std::string HelpMessage() " -rpcpassword= " + _("Password for JSON-RPC connections") + "\n" + " -rpcport= " + _("Listen for JSON-RPC connections on (default: 8332 or testnet: 18332)") + "\n" + " -rpcallowip= " + _("Allow JSON-RPC connections from specified IP address") + "\n" + +#ifndef QT_GUI " -rpcconnect= " + _("Send commands to node running on (default: 127.0.0.1)") + "\n" + +#endif " -rpcthreads= " + _("Set the number of threads to service RPC calls (default: 4)") + "\n" + " -blocknotify= " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n" + " -walletnotify= " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n" +