Skip to content

Commit

Permalink
Fix Hot Masternode
Browse files Browse the repository at this point in the history
Revert to master branch
  • Loading branch information
thelazier committed May 10, 2016
1 parent 0c6c21f commit 56adee2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/activemasternode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,11 @@ void CActiveMasternode::ManageStatus()

LogPrintf("CActiveMasternode::ManageStatus() - Checking inbound connection to '%s'\n", service.ToString());

CNode *pnode = ConnectNode((CAddress)service, NULL, false);
if(!pnode){
if(!ConnectNode((CAddress)service, NULL, true)){
notCapableReason = "Could not connect to " + service.ToString();
LogPrintf("CActiveMasternode::ManageStatus() - not capable: %s\n", notCapableReason);
return;
}
pnode->Release();

// Choose coins to use
CPubKey pubKeyCollateralAddress;
Expand Down

0 comments on commit 56adee2

Please sign in to comment.