aboutsummaryrefslogtreecommitdiff
path: root/src/bitcoinrpc.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2012-08-07 11:57:38 -0700
committerWladimir J. van der Laan <[email protected]>2012-08-07 11:57:38 -0700
commitc995995eb8627a56079180fceb85323e1b73495e (patch)
tree9f732d794b83a82282f5751dafade1478025bdd6 /src/bitcoinrpc.cpp
parentMerge pull request #1650 from Diapolo/spelling_fixes (diff)
parentMake this error message similar to the others (diff)
downloaddiscoin-c995995eb8627a56079180fceb85323e1b73495e.tar.xz
discoin-c995995eb8627a56079180fceb85323e1b73495e.zip
Merge pull request #1660 from fanquake/master
Change this error message to be similar to the others
Diffstat (limited to 'src/bitcoinrpc.cpp')
-rw-r--r--src/bitcoinrpc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp
index 2e3f8a8e5..23ec4ffff 100644
--- a/src/bitcoinrpc.cpp
+++ b/src/bitcoinrpc.cpp
@@ -1012,7 +1012,7 @@ Value sendmany(const Array& params, bool fHelp)
if (!fCreated)
{
if (totalAmount + nFeeRequired > pwalletMain->GetBalance())
- throw JSONRPCError(-6, "Insufficient funds");
+ throw JSONRPCError(-6, "Account has insufficient funds");
throw JSONRPCError(-4, "Transaction creation failed");
}
if (!pwalletMain->CommitTransaction(wtx, keyChange))