Merge #8512: Trivial: Corrected JSON typo on setban of net.cpp

6ffd996 Corrected JSON typo on setban of net.cpp (Sev)
This commit is contained in:
Wladimir J. van der Laan 2016-08-17 12:01:38 +02:00
commit 29496fc9e0
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 1 additions and 1 deletions

View File

@ -484,7 +484,7 @@ UniValue setban(const UniValue& params, bool fHelp)
"\nExamples:\n" "\nExamples:\n"
+ HelpExampleCli("setban", "\"192.168.0.6\" \"add\" 86400") + HelpExampleCli("setban", "\"192.168.0.6\" \"add\" 86400")
+ HelpExampleCli("setban", "\"192.168.0.0/24\" \"add\"") + 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; CSubNet subNet;