Merge #7514: Fix IsInitialBlockDownload for testnet
8aa7226
Fix IsInitialBlockDownload to play nice with testnet (jmacwhyte)
This commit is contained in:
commit
d9594bfe0c
1 changed files with 1 additions and 1 deletions
|
@ -1583,7 +1583,7 @@ bool IsInitialBlockDownload()
|
||||||
if (lockIBDState)
|
if (lockIBDState)
|
||||||
return false;
|
return false;
|
||||||
bool state = (chainActive.Height() < pindexBestHeader->nHeight - 24 * 6 ||
|
bool state = (chainActive.Height() < pindexBestHeader->nHeight - 24 * 6 ||
|
||||||
pindexBestHeader->GetBlockTime() < GetTime() - nMaxTipAge);
|
std::max(chainActive.Tip()->GetBlockTime(), pindexBestHeader->GetBlockTime()) < GetTime() - nMaxTipAge);
|
||||||
if (!state)
|
if (!state)
|
||||||
lockIBDState = true;
|
lockIBDState = true;
|
||||||
return state;
|
return state;
|
||||||
|
|
Loading…
Add table
Reference in a new issue