367 | @@ -368,7 +368,16 @@ std::string HelpMessage(HelpMessageMode mode)
368 | strUsage += " -rpcsslcertificatechainfile=<file.cert> " + strprintf(_("Server certificate file (default: %s)"), "server.cert") + "\n";
369 | strUsage += " -rpcsslprivatekeyfile=<file.pem> " + strprintf(_("Server private key (default: %s)"), "server.pem") + "\n";
370 | strUsage += " -rpcsslciphers=<ciphers> " + strprintf(_("Acceptable ciphers (default: %s)"), "TLSv1.2+HIGH:TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!3DES:@STRENGTH") + "\n";
371 | -
372 | +
373 | +#ifdef ENABLE_WALLET
374 | + strUsage += "\n" + _("Backup options:") + "\n";
375 | + strUsage += " -backups " + strprintf(_("Enable auto creation of UNENCRYPTED backups (dumps) (default: %u)"), DEFAULT_BACKUPS_ENABLED) + "\n";
376 | + strUsage += " -backupsallowunencrypted " + strprintf(_("Allow backups of unencrypted wallets (default: %u)"), DEFAULT_ALLOW_UNENCRYPTED_BACKUPS) + "\n";
So I need to specify two options to enable backups (assuming an unencrypted wallet)? Why?
I've started it very restrained. Maybe once the -backup feature could be enabled by default.
I think enabling two options for making unencrypted backups is okay because it's somehow bad practice.