From fd661695a5765cfc663c87eef78c4f0a5896537a Mon Sep 17 00:00:00 2001 From: Adrian Gallagher Date: Thu, 9 Mar 2017 05:02:11 -0800 Subject: [PATCH] Litecoin: Adjust nCheckDepth value --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index e821cea2dc..376b144bfa 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -4158,7 +4158,7 @@ bool CVerifyDB::VerifyDB(const CChainParams& chainparams, CCoinsView *coinsview, // Verify blocks in the best chain if (nCheckDepth <= 0) - nCheckDepth = 1000000000; // suffices until the year 19000 + nCheckDepth = 4000000000; // suffices until the year 19000 if (nCheckDepth > chainActive.Height()) nCheckDepth = chainActive.Height(); nCheckLevel = std::max(0, std::min(4, nCheckLevel));