fix lock issue for QT node diconnect and RPC disconnectnode

Zcash: only RPC disconnectnode
This commit is contained in:
Jonas Schnelli 2015-06-19 16:32:22 +02:00 committed by Jack Grigg
parent fa80be8ff5
commit cbf3ab51f9
No known key found for this signature in database
GPG Key ID: 6A6914DAFBEA00DA
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
@ -520,7 +520,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")
{