diff options
| author | Michael Rotarius <[email protected]> | 2017-06-08 23:25:53 +0200 |
|---|---|---|
| committer | Michael Rotarius <[email protected]> | 2017-06-30 13:21:08 +0200 |
| commit | b8bb4257fe7b2f077e1c8b4145ff13d1041787e8 (patch) | |
| tree | 7d313b0717449dda6612ed6000a95ce8970dbfa4 /src/rpc/net.cpp | |
| parent | Merge #10192: Cache full script execution results in addition to signatures (diff) | |
| download | discoin-b8bb4257fe7b2f077e1c8b4145ff13d1041787e8.tar.xz discoin-b8bb4257fe7b2f077e1c8b4145ff13d1041787e8.zip | |
REST/RPC example update
Diffstat (limited to 'src/rpc/net.cpp')
| -rw-r--r-- | src/rpc/net.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/rpc/net.cpp b/src/rpc/net.cpp index 5cab0ad5b..e9d255b17 100644 --- a/src/rpc/net.cpp +++ b/src/rpc/net.cpp @@ -302,9 +302,8 @@ UniValue getaddednodeinfo(const JSONRPCRequest& request) " ,...\n" "]\n" "\nExamples:\n" - + HelpExampleCli("getaddednodeinfo", "true") - + HelpExampleCli("getaddednodeinfo", "true \"192.168.0.201\"") - + HelpExampleRpc("getaddednodeinfo", "true, \"192.168.0.201\"") + + HelpExampleCli("getaddednodeinfo", "\"192.168.0.201\"") + + HelpExampleRpc("getaddednodeinfo", "\"192.168.0.201\"") ); if(!g_connman) |