diff options
author | Sev <git@sevastos.com> | 2016-08-14 15:35:27 +0300 |
---|---|---|
committer | Sev <git@sevastos.com> | 2016-08-14 15:36:22 +0300 |
commit | 6ffd996b8ee5f36ed4490410385f9b072da5889b (patch) | |
tree | 600bb7dd948f00e59fa257073bf1b9fb6e03a718 /src/rpc | |
parent | 38590729631c0984abf5c1bb26a0f2d21ccd4916 (diff) |
Corrected JSON typo on setban of net.cpp
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/net.cpp b/src/rpc/net.cpp index b85c7b2e1a..89035aaa84 100644 --- a/src/rpc/net.cpp +++ b/src/rpc/net.cpp @@ -484,7 +484,7 @@ UniValue setban(const UniValue& params, bool fHelp) "\nExamples:\n" + HelpExampleCli("setban", "\"192.168.0.6\" \"add\" 86400") + HelpExampleCli("setban", "\"192.168.0.0/24\" \"add\"") - + HelpExampleRpc("setban", "\"192.168.0.6\", \"add\" 86400") + + HelpExampleRpc("setban", "\"192.168.0.6\", \"add\", 86400") ); CSubNet subNet; |