diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-08-17 12:01:38 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-08-17 12:01:46 +0200 |
| commit | 29496fc9e09586fcf7fb060c381cf2a518d0e7ed (patch) | |
| tree | 04ef3a3213315818ffe41a1968618fadcaf32e9c /src/rpc/net.cpp | |
| parent | Merge #8521: qa: Remove duplicate `hash160` implementation (diff) | |
| parent | Corrected JSON typo on setban of net.cpp (diff) | |
| download | discoin-29496fc9e09586fcf7fb060c381cf2a518d0e7ed.tar.xz discoin-29496fc9e09586fcf7fb060c381cf2a518d0e7ed.zip | |
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/rpc/net.cpp')
| -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 58cf4a56e..4ce122648 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; |