diff --git a/src/main.cpp b/src/main.cpp index 2b820f1b2..80d9e533f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -6830,7 +6830,7 @@ bool SendMessages(CNode* pto, bool fSendTrickle) if (!state.fSyncStarted && !pto->fClient && !fImporting && !fReindex && pto->nStartingHeight != 0 ) { // Only actively request headers from a single peer, unless we're close to today. - if ( (nSyncStarted < 30 && (fFetch || pindexStart->nHeight == 0) )//|| pindexBestHeader->GetBlockTime() > GetAdjustedTime() - 24 * 60 * 60) + if ( nSyncStarted < 30 && (fFetch || pindexStart->nHeight == 0) )//|| pindexBestHeader->GetBlockTime() > GetAdjustedTime() - 24 * 60 * 60) { state.fSyncStarted = true; nSyncStarted++;