diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2013-01-26 18:57:07 +0100 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2013-01-26 18:57:07 +0100 |
commit | 56869fc07cd2378a47e13479b83c8c76038947c2 (patch) | |
tree | d251839fb0a29d765cf8c445b68bf794359b6d17 /src/main.cpp | |
parent | 71eccdeafff03a1c68c93b223427141f0885efc6 (diff) |
Check only 288 blocks at startup by default
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) |