aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2012-03-22 12:18:56 -0400
committerGavin Andresen <gavinandresen@gmail.com>2012-03-22 12:18:56 -0400
commit958fe01c327a5a758b432d768685e77304b737bc (patch)
tree553cba94331ea896579481220e706f34a0661739 /src/init.cpp
parente12d1317348c22368f032d2d09ea9cc2ac997a72 (diff)
parent4538e45c46d3829a21aed7685e6fbac7e8aafad3 (diff)
downloadbitcoin-958fe01c327a5a758b432d768685e77304b737bc.tar.xz
Merge branch 'checklevel' of https://github.com/sipa/bitcoin
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index b00a6be81d..603022e1e0 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -223,7 +223,9 @@ bool AppInit2(int argc, char* argv[])
" -rpcconnect=<ip> \t " + _("Send commands to node running on <ip> (default: 127.0.0.1)") + "\n" +
" -blocknotify=<cmd> " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n" +
" -keypool=<n> \t " + _("Set key pool size to <n> (default: 100)") + "\n" +
- " -rescan \t " + _("Rescan the block chain for missing wallet transactions") + "\n";
+ " -rescan \t " + _("Rescan the block chain for missing wallet transactions") + "\n" +
+ " -checkblocks=<n> \t\t " + _("How many blocks to check at startup (default: 2500, 0 = all)") + "\n" +
+ " -checklevel=<n> \t\t " + _("How thorough the block verification is (0-6, default: 1)") + "\n";
#ifdef USE_SSL
strUsage += string() +