diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-09-25 23:04:54 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-10-20 23:08:57 +0200 |
commit | beeb57610cf57c1d802be993ac0e98211bfc5f0c (patch) | |
tree | adf8ec903008407b95da0467a0ea8fcbf4909938 /src/bitcoinrpc.h | |
parent | e1bfbab8029c33102889d7d970da5b6cc32ff75b (diff) |
Add gettxout and gettxoutsetinfo RPCs
Diffstat (limited to 'src/bitcoinrpc.h')
-rw-r--r-- | src/bitcoinrpc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bitcoinrpc.h b/src/bitcoinrpc.h index 89ab976f56..9290697664 100644 --- a/src/bitcoinrpc.h +++ b/src/bitcoinrpc.h @@ -187,5 +187,7 @@ extern json_spirit::Value settxfee(const json_spirit::Array& params, bool fHelp) extern json_spirit::Value getrawmempool(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value getblockhash(const json_spirit::Array& params, bool fHelp); extern json_spirit::Value getblock(const json_spirit::Array& params, bool fHelp); +extern json_spirit::Value gettxoutsetinfo(const json_spirit::Array& params, bool fHelp); +extern json_spirit::Value gettxout(const json_spirit::Array& params, bool fHelp); #endif |