diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-11-04 23:34:57 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-11-04 23:34:57 -0800 |
| commit | 86406daeca0390b13457cc4f8d5f24fa5bf54557 (patch) | |
| tree | 76f5a2899688b84bbd348f91bbad0118a4e0b3ed /src/rpcwallet.cpp | |
| parent | Merge pull request #1971 from sipa/bugfix_norelayspent (diff) | |
| parent | fix some double-spaces in strings (diff) | |
| download | discoin-86406daeca0390b13457cc4f8d5f24fa5bf54557.tar.xz discoin-86406daeca0390b13457cc4f8d5f24fa5bf54557.zip | |
Merge pull request #1830 from Diapolo/trans_rem_spaces
fix some double-spaces in strings
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 cd91f650a..29b3298b9 100644 --- a/src/rpcwallet.cpp +++ b/src/rpcwallet.cpp @@ -1429,7 +1429,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. The keypool has been flushed, you need to make a new backup."; + 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> |