Add a locking mechanism to IsInitialBlockDownload to ensure it never goes from false to true.
This commit is contained in:
parent
a2d0fc658a
commit
9ec75c5ef4
1 changed files with 7 additions and 1 deletions
|
@ -1177,8 +1177,14 @@ bool IsInitialBlockDownload()
|
|||
LOCK(cs_main);
|
||||
if (fImporting || fReindex || chainActive.Height() < Checkpoints::GetTotalBlocksEstimate())
|
||||
return true;
|
||||
return (chainActive.Height() < pindexBestHeader->nHeight - 24 * 6 ||
|
||||
static bool lockIBDState = false;
|
||||
if (lockIBDState)
|
||||
return false;
|
||||
bool state = (chainActive.Height() < pindexBestHeader->nHeight - 24 * 6 ||
|
||||
pindexBestHeader->GetBlockTime() < GetTime() - 24 * 60 * 60);
|
||||
if (!state)
|
||||
lockIBDState = true;
|
||||
return state;
|
||||
}
|
||||
|
||||
bool fLargeWorkForkFound = false;
|
||||
|
|
Loading…
Reference in a new issue