aboutsummaryrefslogtreecommitdiff
path: root/src/rpcwallet.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2012-10-01 13:40:48 -0700
committerGavin Andresen <[email protected]>2012-10-01 13:40:48 -0700
commitda6e9fe634ff1891d2792ee04d3b643cf34c0836 (patch)
treefbc16dd89049351e1e41f02a2ead1abcdd868fa2 /src/rpcwallet.cpp
parentMerge branch '2012_09_base58tests' of github.com:laanwj/bitcoin (diff)
parentAdd a backup warning to the encryptwallet RPC command (diff)
downloaddiscoin-da6e9fe634ff1891d2792ee04d3b643cf34c0836.tar.xz
discoin-da6e9fe634ff1891d2792ee04d3b643cf34c0836.zip
Merge pull request #1893 from kjj2/issue1884
Issue 1884: Add a backup warning to the encryptwallet RPC command
Diffstat (limited to 'src/rpcwallet.cpp')
-rw-r--r--src/rpcwallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp
index 3d0d05de8..c92dfc1da 100644
--- a/src/rpcwallet.cpp
+++ b/src/rpcwallet.cpp
@@ -1396,7 +1396,7 @@ Value encryptwallet(const Array& params, bool fHelp)
// slack space in .dat files; that is bad if the old data is
// unencrypted private keys. So:
StartShutdown();
- return "wallet encrypted; Bitcoin server stopping, restart to run with encrypted wallet";
+ return "wallet encrypted; Bitcoin server stopping, restart to run with encrypted wallet. The keypool has been flushed, you need to make a new backup.";
}
class DescribeAddressVisitor : public boost::static_visitor<Object>