diff options
| author | Alex Morcos <[email protected]> | 2017-05-11 13:11:36 -0400 |
|---|---|---|
| committer | Alex Morcos <[email protected]> | 2017-05-11 13:12:42 -0400 |
| commit | 65d484adf9574641703964d93df7c79ee1185098 (patch) | |
| tree | b02063716eb120c33db9d46f26a4fb9c442f659c /src | |
| parent | Merge #10328: Update contrib/debian to latest Ubuntu PPA upload. (diff) | |
| download | discoin-65d484adf9574641703964d93df7c79ee1185098.tar.xz discoin-65d484adf9574641703964d93df7c79ee1185098.zip | |
Output line to debug.log when IsInitialBlockDownload latches to false
Diffstat (limited to 'src')
| -rw-r--r-- | src/validation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/validation.cpp b/src/validation.cpp index 75a35756d..ccc14a91f 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -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; } |