Revert few parts of #1073 - too early for node version check (and it's not necessary to do so there anyway) (#1080)
This commit is contained in:
parent
bdcc9ab47c
commit
a584a68634
@ -1565,7 +1565,7 @@ bool CDarksendPool::DoAutomaticDenominating(bool fDryRun)
|
|||||||
nLastTimeChanged = GetTimeMillis();
|
nLastTimeChanged = GetTimeMillis();
|
||||||
// connect to Masternode and submit the queue request
|
// connect to Masternode and submit the queue request
|
||||||
CNode* pnode = ConnectNode((CAddress)addr, NULL, true);
|
CNode* pnode = ConnectNode((CAddress)addr, NULL, true);
|
||||||
if(pnode != NULL && pnode->nVersion >= MIN_PRIVATESEND_PEER_PROTO_VERSION) {
|
if(pnode) {
|
||||||
pSubmittedToMasternode = pmn;
|
pSubmittedToMasternode = pmn;
|
||||||
nSessionDenom = dsq.nDenom;
|
nSessionDenom = dsq.nDenom;
|
||||||
|
|
||||||
@ -1606,7 +1606,7 @@ bool CDarksendPool::DoAutomaticDenominating(bool fDryRun)
|
|||||||
nLastTimeChanged = GetTimeMillis();
|
nLastTimeChanged = GetTimeMillis();
|
||||||
LogPrintf("CDarksendPool::DoAutomaticDenominating -- attempt %d connection to Masternode %s\n", nTries, pmn->addr.ToString());
|
LogPrintf("CDarksendPool::DoAutomaticDenominating -- attempt %d connection to Masternode %s\n", nTries, pmn->addr.ToString());
|
||||||
CNode* pnode = ConnectNode((CAddress)pmn->addr, NULL, true);
|
CNode* pnode = ConnectNode((CAddress)pmn->addr, NULL, true);
|
||||||
if(pnode != NULL && pnode->nVersion >= MIN_PRIVATESEND_PEER_PROTO_VERSION) {
|
if(pnode) {
|
||||||
LogPrintf("CDarksendPool::DoAutomaticDenominating -- connected %s\n", pmn->vin.ToString());
|
LogPrintf("CDarksendPool::DoAutomaticDenominating -- connected %s\n", pmn->vin.ToString());
|
||||||
pSubmittedToMasternode = pmn;
|
pSubmittedToMasternode = pmn;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user