diff options
| author | kjj2 <[email protected]> | 2012-09-30 08:50:59 -0500 |
|---|---|---|
| committer | kjj2 <[email protected]> | 2012-09-30 08:50:59 -0500 |
| commit | 31a8b70ee3ad243a7d2a3401ced79f5ece6b4a00 (patch) | |
| tree | 69e529c58482845d8efc1f04ea338ecf32ef1daa /src/rpcwallet.cpp | |
| parent | Merge branch 'testdata' of git://github.com/TheBlueMatt/bitcoin (diff) | |
| download | discoin-31a8b70ee3ad243a7d2a3401ced79f5ece6b4a00.tar.xz discoin-31a8b70ee3ad243a7d2a3401ced79f5ece6b4a00.zip | |
Add a backup warning to the encryptwallet RPC command
Diffstat (limited to 'src/rpcwallet.cpp')
| -rw-r--r-- | src/rpcwallet.cpp | 2 |
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> |