diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-09-08 16:23:40 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-09-08 16:24:08 +0200 |
commit | 6f6fb188b50a70edbce81a4c0b888ee7515f67b5 (patch) | |
tree | 256d96bacab820d51388b1cb0d7a31efdfc023c0 /src | |
parent | e8bb8ad85abe3d00b9dcc9f8cdbb0512b4ae46bb (diff) | |
parent | 7a7e68d1e2b3d7ca5899da2921a5afe5073a26f0 (diff) |
Merge pull request #6644
7a7e68d Prune the -prune help to reflect that the wallet is no longer disabled. (Gregory Maxwell)
Diffstat (limited to 'src')
-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 5759b4b428..58a6d540a8 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -308,7 +308,7 @@ std::string HelpMessage(HelpMessageMode mode) #ifndef WIN32 strUsage += HelpMessageOpt("-pid=<file>", strprintf(_("Specify pid file (default: %s)"), "bitcoind.pid")); #endif - strUsage += HelpMessageOpt("-prune=<n>", strprintf(_("Reduce storage requirements by pruning (deleting) old blocks. This mode disables wallet support and is incompatible with -txindex. " + strUsage += HelpMessageOpt("-prune=<n>", strprintf(_("Reduce storage requirements by pruning (deleting) old blocks. This mode is incompatible with -txindex and -rescan. " "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")); |