Browse Source

Pass check level, check depth to VerifyDB()

pull/145/head
Jeff Garzik 11 years ago
parent
commit
168ba99392
  1. 3
      src/init.cpp
  2. 5
      src/main.cpp
  3. 2
      src/main.h

3
src/init.cpp

@ -757,7 +757,8 @@ bool AppInit2(boost::thread_group& threadGroup)
}
uiInterface.InitMessage(_("Verifying blocks..."));
if (!VerifyDB()) {
if (!VerifyDB(GetArg("-checklevel", 3),
GetArg( "-checkblocks", 288))) {
strLoadError = _("Corrupted block database detected");
break;
}

5
src/main.cpp

@ -2616,13 +2616,12 @@ bool static LoadBlockIndexDB()
return true;
}
bool VerifyDB() {
bool VerifyDB(int nCheckLevel, int nCheckDepth)
{
if (pindexBest == NULL || pindexBest->pprev == NULL)
return true;
// Verify blocks in the best chain
int nCheckLevel = GetArg("-checklevel", 3);
int nCheckDepth = GetArg( "-checkblocks", 288);
if (nCheckDepth == 0)
nCheckDepth = 1000000000; // suffices until the year 19000
if (nCheckDepth > nBestHeight)

2
src/main.h

@ -146,7 +146,7 @@ bool LoadBlockIndex();
/** Unload database information */
void UnloadBlockIndex();
/** Verify consistency of the block and coin databases */
bool VerifyDB();
bool VerifyDB(int nCheckLevel, int nCheckDepth);
/** Print the loaded block tree */
void PrintBlockTree();
/** Find a block by height in the currently-connected chain */

Loading…
Cancel
Save