File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -750,8 +750,8 @@ static RPCHelpMan listbanned()
750
750
{RPCResult::Type::OBJ, " " , " " ,
751
751
{
752
752
{RPCResult::Type::STR, " address" , " " },
753
- {RPCResult::Type::NUM_TIME, " banned_until" , " " },
754
753
{RPCResult::Type::NUM_TIME, " ban_created" , " " },
754
+ {RPCResult::Type::NUM_TIME, " banned_until" , " " },
755
755
}},
756
756
}},
757
757
RPCExamples{
@@ -774,8 +774,8 @@ static RPCHelpMan listbanned()
774
774
const CBanEntry& banEntry = entry.second ;
775
775
UniValue rec (UniValue::VOBJ);
776
776
rec.pushKV (" address" , entry.first .ToString ());
777
- rec.pushKV (" banned_until" , banEntry.nBanUntil );
778
777
rec.pushKV (" ban_created" , banEntry.nCreateTime );
778
+ rec.pushKV (" banned_until" , banEntry.nBanUntil );
779
779
780
780
bannedAddresses.push_back (rec);
781
781
}
You can’t perform that action at this time.
0 commit comments