Merge pull request #2222 from sipa/check288
Check only 288 blocks at startup by default
This commit is contained in:
commit
bb5181fcc2
2 changed files with 2 additions and 2 deletions
|
@ -303,7 +303,7 @@ std::string HelpMessage()
|
||||||
" -keypool=<n> " + _("Set key pool size to <n> (default: 100)") + "\n" +
|
" -keypool=<n> " + _("Set key pool size to <n> (default: 100)") + "\n" +
|
||||||
" -rescan " + _("Rescan the block chain for missing wallet transactions") + "\n" +
|
" -rescan " + _("Rescan the block chain for missing wallet transactions") + "\n" +
|
||||||
" -salvagewallet " + _("Attempt to recover private keys from a corrupt wallet.dat") + "\n" +
|
" -salvagewallet " + _("Attempt to recover private keys from a corrupt wallet.dat") + "\n" +
|
||||||
" -checkblocks=<n> " + _("How many blocks to check at startup (default: 2500, 0 = all)") + "\n" +
|
" -checkblocks=<n> " + _("How many blocks to check at startup (default: 288, 0 = all)") + "\n" +
|
||||||
" -checklevel=<n> " + _("How thorough the block verification is (0-4, default: 3)") + "\n" +
|
" -checklevel=<n> " + _("How thorough the block verification is (0-4, default: 3)") + "\n" +
|
||||||
" -txindex " + _("Maintain a full transaction index (default: 0)") + "\n" +
|
" -txindex " + _("Maintain a full transaction index (default: 0)") + "\n" +
|
||||||
" -loadblock=<file> " + _("Imports blocks from external blk000??.dat file") + "\n" +
|
" -loadblock=<file> " + _("Imports blocks from external blk000??.dat file") + "\n" +
|
||||||
|
|
|
@ -2608,7 +2608,7 @@ bool VerifyDB() {
|
||||||
|
|
||||||
// Verify blocks in the best chain
|
// Verify blocks in the best chain
|
||||||
int nCheckLevel = GetArg("-checklevel", 3);
|
int nCheckLevel = GetArg("-checklevel", 3);
|
||||||
int nCheckDepth = GetArg( "-checkblocks", 2500);
|
int nCheckDepth = GetArg( "-checkblocks", 288);
|
||||||
if (nCheckDepth == 0)
|
if (nCheckDepth == 0)
|
||||||
nCheckDepth = 1000000000; // suffices until the year 19000
|
nCheckDepth = 1000000000; // suffices until the year 19000
|
||||||
if (nCheckDepth > nBestHeight)
|
if (nCheckDepth > nBestHeight)
|
||||||
|
|
Loading…
Reference in a new issue