aboutsummaryrefslogtreecommitdiff
path: root/src/init.cpp
diff options
context:
space:
mode:
authorJonas Schnelli <jonas.schnelli@include7.ch>2015-05-08 14:56:52 +0200
committerJonas Schnelli <jonas.schnelli@include7.ch>2015-05-08 19:59:01 +0200
commita1d0ec44d7db23a632a8320f394d8333c7c23fc9 (patch)
tree7752902fd1a76ec37673499c8f3a4c0619275643 /src/init.cpp
parentfec5c0ea05ec22e12313ce3ec575786f5c52039f (diff)
downloadbitcoin-a1d0ec44d7db23a632a8320f394d8333c7c23fc9.tar.xz
re-add -reindex help message
was suddenly removed with fc44231cb72afae2fffe0fac64e236a1d33b90e6 (probably not by purpose)
Diffstat (limited to 'src/init.cpp')
-rw-r--r--src/init.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp
index ce012be56d..47cbda32f5 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -279,7 +279,7 @@ std::string HelpMessage(HelpMessageMode mode)
strUsage += HelpMessageOpt("-prune=<n>", strprintf(_("Reduce storage requirements by pruning (deleting) old blocks. This mode disables wallet support and is incompatible with -txindex. "
"Warning: Reverting this setting requires re-downloading the entire blockchain. "
"(default: 0 = disable pruning blocks, >%u = target size in MiB to use for block files)"), MIN_DISK_SPACE_FOR_BLOCK_FILES / 1024 / 1024));
-
+ strUsage += HelpMessageOpt("-reindex", _("Rebuild block chain index from current blk000??.dat files on startup"));
#if !defined(WIN32)
strUsage += HelpMessageOpt("-sysperms", _("Create new files with system default permissions, instead of umask 077 (only effective with disabled wallet functionality)"));
#endif