Skip to content

Commit

Permalink
Wrap dumpwallet warning and note scripts aren't dumped
Browse files Browse the repository at this point in the history
  • Loading branch information
meshcollider authored and random-zebra committed May 8, 2021
1 parent dd10a3f commit b4bd8f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/wallet/rpcdump.cpp
Expand Up @@ -504,7 +504,9 @@ UniValue dumpwallet(const JSONRPCRequest& request)
throw std::runtime_error(
"dumpwallet \"filename\"\n"
"\nDumps all wallet keys in a human-readable format to a server-side file. This does not allow overwriting existing files.\n"
"Note that if your wallet contains keys which are not derived from your HD seed (e.g. imported keys), these are not covered by only backing up the seed itself, and must be backed up too (e.g. ensure you back up the whole dumpfile).\n" +
"Imported scripts are not currently included in wallet dumps, these must be backed up separately.\n"
"Note that if your wallet contains keys which are not derived from your HD seed (e.g. imported keys), these are not covered by\n"
"only backing up the seed itself, and must be backed up too (e.g. ensure you back up the whole dumpfile).\n" +
HelpRequiringPassphrase(pwallet) + "\n"
"\nArguments:\n"
"1. \"filename\" (string, required) The filename\n"
Expand Down

0 comments on commit b4bd8f1

Please sign in to comment.