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 committed by Pasta
parent ad177ba666
commit 6b548bf37a
No known key found for this signature in database
GPG Key ID: D362C9F7142766AE

View File

@ -1198,6 +1198,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;
}