From 56869fc07cd2378a47e13479b83c8c76038947c2 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Sat, 26 Jan 2013 18:57:07 +0100 Subject: Check only 288 blocks at startup by default --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp index 84a5cdc17b..75e7013918 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2608,7 +2608,7 @@ bool VerifyDB() { // Verify blocks in the best chain int nCheckLevel = GetArg("-checklevel", 3); - int nCheckDepth = GetArg( "-checkblocks", 2500); + int nCheckDepth = GetArg( "-checkblocks", 288); if (nCheckDepth == 0) nCheckDepth = 1000000000; // suffices until the year 19000 if (nCheckDepth > nBestHeight) -- cgit v1.2.3