aboutsummaryrefslogtreecommitdiff
path: root/src/rpcwallet.cpp
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2012-08-23 05:34:47 -0700
committerPieter Wuille <[email protected]>2012-08-23 05:34:47 -0700
commitde363e73ea79c252d945d4a436875874d8b3caf5 (patch)
tree441c90c158bd338f7316521f84e118aa47ad41e9 /src/rpcwallet.cpp
parentMerge pull request #1700 from laanwj/2012_08_testsotherfiles (diff)
parentSpaces in strings (diff)
downloaddiscoin-de363e73ea79c252d945d4a436875874d8b3caf5.tar.xz
discoin-de363e73ea79c252d945d4a436875874d8b3caf5.zip
Merge pull request #1709 from xanatos/patch-10
Spaces in strings
Diffstat (limited to 'src/rpcwallet.cpp')
-rw-r--r--src/rpcwallet.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp
index f74f3cb3a..3b68105dd 100644
--- a/src/rpcwallet.cpp
+++ b/src/rpcwallet.cpp
@@ -632,7 +632,7 @@ Value sendmany(const Array& params, bool fHelp)
{
CBitcoinAddress address(s.name_);
if (!address.IsValid())
- throw JSONRPCError(-5, string("Invalid Bitcoin address:")+s.name_);
+ throw JSONRPCError(-5, string("Invalid Bitcoin address: ")+s.name_);
if (setAddress.count(address))
throw JSONRPCError(-8, string("Invalid parameter, duplicated address: ")+s.name_);
@@ -1389,7 +1389,7 @@ Value encryptwallet(const Array& params, bool fHelp)
// BDB seems to have a bad habit of writing old data into
// slack space in .dat files; that is bad if the old data is
- // unencrypted private keys. So:
+ // unencrypted private keys. So:
StartShutdown();
return "wallet encrypted; Bitcoin server stopping, restart to run with encrypted wallet";
}