diff options
author | Luke Dashjr <luke-jr+git@utopios.org> | 2014-10-14 20:13:44 +0000 |
---|---|---|
committer | Luke Dashjr <luke-jr+git@utopios.org> | 2014-10-14 20:13:44 +0000 |
commit | c0195b1c31042a7e5d80fa902b149fe2c7f67bb0 (patch) | |
tree | b95832faaa0ebe466253a35ae9a9c988ec24677e /src/init.cpp | |
parent | 0a08aa8f2ae9acd8e83e09bfae41de2c0a02e1d8 (diff) |
Bugfix: Remove default from -zapwallettxes description (inaccurate)
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 1150bb1f5e..ce72b415aa 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -287,7 +287,7 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += " -wallet=<file> " + _("Specify wallet file (within data directory)") + " " + strprintf(_("(default: %s)"), "wallet.dat") + "\n"; strUsage += " -walletnotify=<cmd> " + _("Execute command when a wallet transaction changes (%s in cmd is replaced by TxID)") + "\n"; strUsage += " -zapwallettxes=<mode> " + _("Delete all wallet transactions and only recover those parts of the blockchain through -rescan on startup") + "\n"; - strUsage += " " + strprintf(_("(default: %u, 1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data)"), 1) + "\n"; + strUsage += " " + _("(1 = keep tx meta data e.g. account owner and payment request information, 2 = drop tx meta data)") + "\n"; #endif strUsage += "\n" + _("Debugging/Testing options:") + "\n"; |