diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-05-09 09:31:20 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-05-09 09:31:33 +0200 |
commit | 7eb66182f3799e695f655e40d58ed2fdaa7044e1 (patch) | |
tree | 7752902fd1a76ec37673499c8f3a4c0619275643 | |
parent | fec5c0ea05ec22e12313ce3ec575786f5c52039f (diff) | |
parent | a1d0ec44d7db23a632a8320f394d8333c7c23fc9 (diff) |
Merge pull request #6117
a1d0ec4 re-add -reindex help message (Jonas Schnelli)
-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 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 |