diff options
| author | fanquake <[email protected]> | 2012-08-07 22:39:19 +0800 |
|---|---|---|
| committer | fanquake <[email protected]> | 2012-08-07 22:39:19 +0800 |
| commit | dc1e5ad1917bb353aee7ef24aabf13ae3fe2fb80 (patch) | |
| tree | 9f732d794b83a82282f5751dafade1478025bdd6 /src | |
| parent | Merge pull request #1650 from Diapolo/spelling_fixes (diff) | |
| download | discoin-dc1e5ad1917bb353aee7ef24aabf13ae3fe2fb80.tar.xz discoin-dc1e5ad1917bb353aee7ef24aabf13ae3fe2fb80.zip | |
Make this error message 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 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)) |