diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-08-17 12:01:38 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2016-08-17 12:01:46 +0200 |
commit | 29496fc9e09586fcf7fb060c381cf2a518d0e7ed (patch) | |
tree | 04ef3a3213315818ffe41a1968618fadcaf32e9c /src | |
parent | b41ac928b89f0017085fca9a728a6a1e6a82ea72 (diff) | |
parent | 6ffd996b8ee5f36ed4490410385f9b072da5889b (diff) |
Merge #8512: Trivial: Corrected JSON typo on setban of net.cpp
6ffd996 Corrected JSON typo on setban of net.cpp (Sev)
Diffstat (limited to 'src')
-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 58cf4a56e0..4ce122648b 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; |