From 248f0d15f0df68d05cbf16ebead39e72f9181e25 Mon Sep 17 00:00:00 2001 From: jl777 Date: Sat, 24 Nov 2018 05:03:57 -1100 Subject: [PATCH] Once insync, not initial download --- src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 2683cc6b3..971d0ff68 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2259,7 +2259,8 @@ bool IsInitialBlockDownload() } state = ((chainActive.Height() < ptr->GetHeight() - 24*60) || ptr->GetBlockTime() < (GetTime() - nMaxTipAge)); - + if ( KOMODO_INSYNC != 0 ) + state = false; if (!state) { LogPrintf("Leaving InitialBlockDownload (latching to false)\n");