diff options
| author | Jonas Schnelli <[email protected]> | 2015-06-12 17:42:32 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2015-06-17 21:40:55 +0200 |
| commit | 3de24d7647db2b9167cee25549c3c603582e19e6 (patch) | |
| tree | d3728145fcbed760f2516ac5befdb791043429e6 /src/rpcnet.cpp | |
| parent | [RPC] extend setban to allow subnets (diff) | |
| download | discoin-3de24d7647db2b9167cee25549c3c603582e19e6.tar.xz discoin-3de24d7647db2b9167cee25549c3c603582e19e6.zip | |
rename json field "bannedtill" to "banned_until"
Diffstat (limited to 'src/rpcnet.cpp')
| -rw-r--r-- | src/rpcnet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcnet.cpp b/src/rpcnet.cpp index e6c33e1d0..35ef92ecf 100644 --- a/src/rpcnet.cpp +++ b/src/rpcnet.cpp @@ -544,7 +544,7 @@ Value listbanned(const Array& params, bool fHelp) { Object rec; rec.push_back(Pair("address", (*it).first.ToString())); - rec.push_back(Pair("bannedtill", (*it).second)); + rec.push_back(Pair("banned_untill", (*it).second)); bannedAddresses.push_back(rec); } |