fix lock issue for QT node diconnect and RPC disconnectnode
This commit is contained in:
@@ -231,7 +231,7 @@ UniValue disconnectnode(const UniValue& params, bool fHelp)
|
||||
if (pNode == NULL)
|
||||
throw JSONRPCError(RPC_CLIENT_NODE_NOT_CONNECTED, "Node not found in connected nodes");
|
||||
|
||||
pNode->CloseSocketDisconnect();
|
||||
pNode->fDisconnect = true;
|
||||
|
||||
return NullUniValue;
|
||||
}
|
||||
@@ -519,7 +519,7 @@ UniValue setban(const UniValue& params, bool fHelp)
|
||||
|
||||
//disconnect possible nodes
|
||||
while(CNode *bannedNode = (isSubnet ? FindNode(subNet) : FindNode(netAddr)))
|
||||
bannedNode->CloseSocketDisconnect();
|
||||
bannedNode->fDisconnect = true;
|
||||
}
|
||||
else if(strCommand == "remove")
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user