Merge #10388: Output line to debug.log when IsInitialBlockDownload latches to false
65d484a
Output line to debug.log when IsInitialBlockDownload latches to false (Alex Morcos)
Tree-SHA512: 8b9d1377167a78ea55afc4582c8b9305c8b0fe56063a25920e9d45ea9335470314e3cfdc92e78b803d304476fa4c19b228fea1758bbeadd20c719006d814b5f2
This commit is contained in:
commit
526e8390e6
1 changed files with 1 additions and 0 deletions
|
@ -1141,6 +1141,7 @@ bool IsInitialBlockDownload()
|
|||
return true;
|
||||
if (chainActive.Tip()->GetBlockTime() < (GetTime() - nMaxTipAge))
|
||||
return true;
|
||||
LogPrintf("Leaving InitialBlockDownload (latching to false)\n");
|
||||
latchToFalse.store(true, std::memory_order_relaxed);
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue