aboutsummaryrefslogtreecommitdiff
path: root/src/rpcwallet.cpp
diff options
context:
space:
mode:
authorMichael Bauer <michael@m-bauer.org>2013-11-24 12:48:52 +0100
committerMichael Bauer <michael@m-bauer.org>2013-12-08 18:51:45 +0100
commit6027b460e40e7769930d0e89f18f011fa0f6c262 (patch)
tree311b39159c8c4a55b2f928a0b33ec47768c295e9 /src/rpcwallet.cpp
parentfbbed19b78e3055103cdff8d31d24ced7e7e561b (diff)
downloadbitcoin-6027b460e40e7769930d0e89f18f011fa0f6c262.tar.xz
Add rpc command 'getunconfirmedbalance' to obtain total unconfirmed balance
Conflicts: src/rpcserver.cpp
Diffstat (limited to 'src/rpcwallet.cpp')
-rw-r--r--src/rpcwallet.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/rpcwallet.cpp b/src/rpcwallet.cpp
index b4e522de8f..fe42b74dea 100644
--- a/src/rpcwallet.cpp
+++ b/src/rpcwallet.cpp
@@ -767,6 +767,15 @@ Value getbalance(const Array& params, bool fHelp)
return ValueFromAmount(nBalance);
}
+Value getunconfirmedbalance(const Array &params, bool fHelp)
+{
+ if (fHelp || params.size() > 0)
+ throw runtime_error(
+ "getunconfirmedbalance\n"
+ "Returns the server's total unconfirmed balance\n");
+ return ValueFromAmount(pwalletMain->GetUnconfirmedBalance());
+}
+
Value movecmd(const Array& params, bool fHelp)
{