From 4acd140eeb660e7196372ac1a4d9742a39dea068 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 28 Feb 2017 11:51:46 -0800 Subject: [PATCH] Update default RPC port in help strings --- src/rpcnet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rpcnet.cpp b/src/rpcnet.cpp index 8eb2ef84d..5eeaeacfe 100644 --- a/src/rpcnet.cpp +++ b/src/rpcnet.cpp @@ -223,8 +223,8 @@ UniValue disconnectnode(const UniValue& params, bool fHelp) "\nArguments:\n" "1. \"node\" (string, required) The node (see getpeerinfo for nodes)\n" "\nExamples:\n" - + HelpExampleCli("disconnectnode", "\"192.168.0.6:8333\"") - + HelpExampleRpc("disconnectnode", "\"192.168.0.6:8333\"") + + HelpExampleCli("disconnectnode", "\"192.168.0.6:8233\"") + + HelpExampleRpc("disconnectnode", "\"192.168.0.6:8233\"") ); CNode* pNode = FindNode(params[0].get_str());