30 | @@ -31,6 +31,7 @@ std::string GetWalletHelpString(bool showDebug)
31 | strUsage += HelpMessageOpt("-paytxfee=<amt>", strprintf(_("Fee (in %s/kB) to add to transactions you send (default: %s)"),
32 | CURRENCY_UNIT, FormatMoney(payTxFee.GetFeePerK())));
33 | strUsage += HelpMessageOpt("-rescan", _("Rescan the block chain for missing wallet transactions on startup"));
34 | + strUsage += HelpMessageOpt("-disablewalletupdates", _("Do not update the wallet with any new blocks that have been seen since last load"));
For consistency, we try to make the meaning positive for new options, instead of reversing w/ disable in front.
E.g. make this option -walletupdates and default to 1, so that the usual -nowalletupdates or -walletupdates=0 can be used to not do wallet updates.
Also: is this uncommon enough to make it an untranslated showDebug only option?