mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
[Qt] call DumpBanlist() when baning unbaning nodes
- this matches RPC call behaviour
This commit is contained in:
parent
be8929265f
commit
4ed05101f3
@ -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();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user