aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2013-01-26 10:42:52 -0800
committerGavin Andresen <[email protected]>2013-01-26 10:42:52 -0800
commitbb5181fcc2e342966cc1c4b5efc98fc012a34fcc (patch)
treed251839fb0a29d765cf8c445b68bf794359b6d17 /src/main.cpp
parentMerge pull request #2213 from Diapolo/translations (diff)
parentCheck only 288 blocks at startup by default (diff)
downloaddiscoin-bb5181fcc2e342966cc1c4b5efc98fc012a34fcc.tar.xz
discoin-bb5181fcc2e342966cc1c4b5efc98fc012a34fcc.zip
Merge pull request #2222 from sipa/check288
Check only 288 blocks at startup by default
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 84a5cdc17..75e701391 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)