diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-08-07 11:57:38 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-08-07 11:57:38 -0700 |
commit | c995995eb8627a56079180fceb85323e1b73495e (patch) | |
tree | 9f732d794b83a82282f5751dafade1478025bdd6 /src | |
parent | dd199d0ebd086262626a5cc0ce794de6a477d731 (diff) | |
parent | dc1e5ad1917bb353aee7ef24aabf13ae3fe2fb80 (diff) |
Merge pull request #1660 from fanquake/master
Change this error message to be similar to the others
Diffstat (limited to 'src')
-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 2e3f8a8e5b..23ec4ffffc 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)) |