diff options
| author | Luke Dashjr <[email protected]> | 2012-10-09 23:16:24 +0000 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-10-09 23:16:24 +0000 |
| commit | cef36fad891fba0fd8f5aec73bb17135b7fb133a (patch) | |
| tree | 43eeae2dd9003ae894603bbb315ee2c3e40b9097 /src/bitcoinrpc.cpp | |
| parent | When encrypting the wallet, warn user that old backups will become useless. (diff) | |
| parent | Avoid crashes at shutdown due to printf() in global destructors. (diff) | |
| download | discoin-cef36fad891fba0fd8f5aec73bb17135b7fb133a.tar.xz discoin-cef36fad891fba0fd8f5aec73bb17135b7fb133a.zip | |
Merge branch '0.4.x' into 0.5.x
Conflicts:
src/bitcoinrpc.cpp
src/init.cpp
Diffstat (limited to 'src/bitcoinrpc.cpp')
| -rw-r--r-- | src/bitcoinrpc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 9c9ff255d..7cee35617 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -1589,7 +1589,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."; } |