aboutsummaryrefslogtreecommitdiff
path: root/src/rpcwallet.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2012-11-04 23:34:57 -0800
committerWladimir J. van der Laan <[email protected]>2012-11-04 23:34:57 -0800
commit86406daeca0390b13457cc4f8d5f24fa5bf54557 (patch)
tree76f5a2899688b84bbd348f91bbad0118a4e0b3ed /src/rpcwallet.cpp
parentMerge pull request #1971 from sipa/bugfix_norelayspent (diff)
parentfix some double-spaces in strings (diff)
downloaddiscoin-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.cpp2
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>