diff options
author | Jeff Garzik <jgarzik@bitpay.com> | 2014-03-10 13:37:03 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@bitpay.com> | 2014-03-10 13:37:03 -0400 |
commit | a63f8b7b36e39722024a0ba061ca214f00a8f1bd (patch) | |
tree | a3f9c676ca26c1b6271740fa2422d303f96d9893 /src/rpcserver.h | |
parent | 0ffd87f1c13662c39366e8b2a9b37e08cf8aa185 (diff) | |
parent | a00ebb51176d229683d36cd02a8a26fd63a471a8 (diff) |
Merge pull request #3717 from djpnewton/wallet-txcount
add getwalletinfo RPC call with wallet transaction count
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 0dd583c8eb..ea03c09bf6 100644 --- a/src/rpcserver.h +++ b/src/rpcserver.h @@ -163,6 +163,7 @@ extern json_spirit::Value walletlock(const json_spirit::Array& params, bool fHel extern json_spirit::Value encryptwallet(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value validateaddress(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value getinfo(const json_spirit::Array& params, bool fHelp); +extern json_spirit::Value getwalletinfo(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value getrawtransaction(const json_spirit::Array& params, bool fHelp); // in rcprawtransaction.cpp extern json_spirit::Value listunspent(const json_spirit::Array& params, bool fHelp); |