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:
Wladimir J. van der Laan 2017-05-17 11:18:09 +02:00
commit 526e8390e6
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 1 additions and 0 deletions

View File

@ -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;
}