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/init.cpp | |
parent | 71eccdeafff03a1c68c93b223427141f0885efc6 (diff) |
Check only 288 blocks at startup by default
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 7285e7c0d5..9b9415a8ed 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -303,7 +303,7 @@ std::string HelpMessage() " -keypool=<n> " + _("Set key pool size to <n> (default: 100)") + "\n" + " -rescan " + _("Rescan the block chain for missing wallet transactions") + "\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" + " -txindex " + _("Maintain a full transaction index (default: 0)") + "\n" + " -loadblock=<file> " + _("Imports blocks from external blk000??.dat file") + "\n" + |