diff options
| author | Michael Bauer <[email protected]> | 2013-11-24 12:48:52 +0100 |
|---|---|---|
| committer | Michael Bauer <[email protected]> | 2013-12-08 18:51:45 +0100 |
| commit | 6027b460e40e7769930d0e89f18f011fa0f6c262 (patch) | |
| tree | 311b39159c8c4a55b2f928a0b33ec47768c295e9 /src/rpcserver.h | |
| parent | Merge pull request #3365 from gmaxwell/hexify (diff) | |
| download | discoin-6027b460e40e7769930d0e89f18f011fa0f6c262.tar.xz discoin-6027b460e40e7769930d0e89f18f011fa0f6c262.zip | |
Add rpc command 'getunconfirmedbalance' to obtain total unconfirmed balance
Conflicts:
src/rpcserver.cpp
Diffstat (limited to 'src/rpcserver.h')
| -rw-r--r-- | src/rpcserver.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rpcserver.h b/src/rpcserver.h index 4d29e90c0..9087be9e8 100644 --- a/src/rpcserver.h +++ b/src/rpcserver.h @@ -135,6 +135,7 @@ extern json_spirit::Value verifymessage(const json_spirit::Array& params, bool f extern json_spirit::Value getreceivedbyaddress(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value getreceivedbyaccount(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value getbalance(const json_spirit::Array& params, bool fHelp); +extern json_spirit::Value getunconfirmedbalance(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value movecmd(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value sendfrom(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value sendmany(const json_spirit::Array& params, bool fHelp); |