[Qt] call DumpBanlist() when baning unbaning nodes

- this matches RPC call behaviour
This commit is contained in:
Philip Kaufmann 2015-07-03 09:00:47 +02:00 committed by Jonas Schnelli
parent be8929265f
commit 4ed05101f3
1 changed files with 2 additions and 0 deletions

View File

@ -807,6 +807,7 @@ void RPCConsole::banSelectedNode(int bantime)
SplitHostPort(nStr, port, addr);
CNode::Ban(CNetAddr(addr), BanReasonManuallyAdded, bantime);
DumpBanlist(); // store banlist to disk
bannedNode->fDisconnect = true;
clearSelectedNode();
@ -826,6 +827,7 @@ void RPCConsole::unbanSelectedNode()
if (possibleSubnet.IsValid())
{
CNode::Unban(possibleSubnet);
DumpBanlist(); // store banlist to disk
clientModel->getBanTableModel()->refresh();
}
}