aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/net.cpp
diff options
context:
space:
mode:
authorJohn Newbery <john@johnnewbery.com>2017-04-13 15:38:59 -0400
committerJohn Newbery <john@johnnewbery.com>2017-04-13 15:38:59 -0400
commit883154cbcb306dcc6205fe349c7056ced1f6c5fc (patch)
treed541068eaf0e021848faa7748d9dadcbdcd6c5aa /src/rpc/net.cpp
parenteab00d96dfe93db894358787e1b34252d8c23206 (diff)
downloadbitcoin-883154cbcb306dcc6205fe349c7056ced1f6c5fc.tar.xz
[rpc] rename disconnectnode argument
Diffstat (limited to 'src/rpc/net.cpp')
-rw-r--r--src/rpc/net.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rpc/net.cpp b/src/rpc/net.cpp
index 44c6e6d308..e4a909c1f6 100644
--- a/src/rpc/net.cpp
+++ b/src/rpc/net.cpp
@@ -236,10 +236,10 @@ UniValue disconnectnode(const JSONRPCRequest& request)
{
if (request.fHelp || request.params.size() != 1)
throw std::runtime_error(
- "disconnectnode \"node\" \n"
+ "disconnectnode \"address\" \n"
"\nImmediately disconnects from the specified node.\n"
"\nArguments:\n"
- "1. \"node\" (string, required) The node (see getpeerinfo for nodes)\n"
+ "1. \"address\" (string, required) The IP address/port of the node\n"
"\nExamples:\n"
+ HelpExampleCli("disconnectnode", "\"192.168.0.6:8333\"")
+ HelpExampleRpc("disconnectnode", "\"192.168.0.6:8333\"")
@@ -607,7 +607,7 @@ static const CRPCCommand commands[] =
{ "network", "ping", &ping, true, {} },
{ "network", "getpeerinfo", &getpeerinfo, true, {} },
{ "network", "addnode", &addnode, true, {"node","command"} },
- { "network", "disconnectnode", &disconnectnode, true, {"node"} },
+ { "network", "disconnectnode", &disconnectnode, true, {"address"} },
{ "network", "getaddednodeinfo", &getaddednodeinfo, true, {"node"} },
{ "network", "getnettotals", &getnettotals, true, {} },
{ "network", "getnetworkinfo", &getnetworkinfo, true, {} },