aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMeshCollider <dobsonsa68@gmail.com>2017-10-19 22:01:30 +1300
committerMarcoFalke <falke.marco@gmail.com>2017-11-09 14:53:23 -0500
commit3f1db56bc1c261c756fb887ae90e7842a53eaf40 (patch)
treed92add4993c216bf178fd991c5ee7f0bb0258160
parent42ea47db42123d2121f2ca5343b1b8e463ae83e8 (diff)
downloadbitcoin-3f1db56bc1c261c756fb887ae90e7842a53eaf40.tar.xz
Wrap dumpwallet warning and note scripts aren't dumped
Github-Pull: #11289 Rebased-From: c098c581968fa23b2a1987c127c47e04d13fb5c8
-rw-r--r--src/wallet/rpcdump.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp
index f346bcda4e..36daca8f81 100644
--- a/src/wallet/rpcdump.cpp
+++ b/src/wallet/rpcdump.cpp
@@ -596,7 +596,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"
"\nArguments:\n"
"1. \"filename\" (string, required) The filename with path (either absolute or relative to bitcoind)\n"
"\nResult:\n"