Revert rand skip

This commit is contained in:
jl777
2019-07-02 07:25:58 -11:00
parent 9edaca71f4
commit a76d74fc64

View File

@@ -223,19 +223,25 @@ void komodo_nSPV(CNode *pto)
if ( (pto->nServices & NODE_ADDRINDEX) != 0 && timestamp > pto->lastutxos + ASSETCHAINS_BLOCKTIME ) if ( (pto->nServices & NODE_ADDRINDEX) != 0 && timestamp > pto->lastutxos + ASSETCHAINS_BLOCKTIME )
{ {
// get utxo since lastheight // get utxo since lastheight
request.resize(1); if ( (rand() % 100) < 10 )
request[0] = NSPV_UTXOS; {
NSPV_lastutxos = pto->lastutxos = timestamp; request.resize(1);
pto->PushMessage("getnSPV",request); request[0] = NSPV_UTXOS;
NSPV_lastutxos = pto->lastutxos = timestamp;
pto->PushMessage("getnSPV",request);
}
} }
} }
if ( timestamp > NSPV_lastinfo + ASSETCHAINS_BLOCKTIME/2 && timestamp > pto->lastinfo + ASSETCHAINS_BLOCKTIME ) if ( timestamp > NSPV_lastinfo + ASSETCHAINS_BLOCKTIME/2 && timestamp > pto->lastinfo + ASSETCHAINS_BLOCKTIME )
{ {
// query current height, blockhash, notarization info if ( (rand() % 100) < 10 )
request.resize(1); {
request[0] = NSPV_INFO; // query current height, blockhash, notarization info
NSPV_lastinfo = pto->lastinfo = timestamp; request.resize(1);
pto->PushMessage("getnSPV",request); request[0] = NSPV_INFO;
NSPV_lastinfo = pto->lastinfo = timestamp;
pto->PushMessage("getnSPV",request);
}
} }
} }