Output line to debug.log when IsInitialBlockDownload latches to false

This commit is contained in:
Alex Morcos 2017-05-11 13:11:36 -04:00 committed by Jack Grigg
parent f04a90afb2
commit bbff8631f5
No known key found for this signature in database
GPG Key ID: 665DBCD284F7DAFF
1 changed files with 1 additions and 0 deletions

View File

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