diff options
author | Matt Corallo <git@bluematt.me> | 2014-11-01 16:01:48 -0700 |
---|---|---|
committer | Matt Corallo <git@bluematt.me> | 2015-04-23 17:50:39 -0700 |
commit | 59ed61b3895b022f61970ea7aac0c20e8ba38886 (patch) | |
tree | 6732e33e4d1dbb70a37ee474c660c6fea0572065 /src/rpcserver.cpp | |
parent | 30da90de8dcbb62199262f65516e574dab57d1bd (diff) |
Add RPC call to generate and verify merkle blocks
Diffstat (limited to 'src/rpcserver.cpp')
-rw-r--r-- | src/rpcserver.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index e2df41fe21..61dda9125b 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -293,6 +293,8 @@ static const CRPCCommand vRPCCommands[] = { "blockchain", "getmempoolinfo", &getmempoolinfo, true }, { "blockchain", "getrawmempool", &getrawmempool, true }, { "blockchain", "gettxout", &gettxout, true }, + { "blockchain", "gettxoutproof", &gettxoutproof, true }, + { "blockchain", "verifytxoutproof", &verifytxoutproof, true }, { "blockchain", "gettxoutsetinfo", &gettxoutsetinfo, true }, { "blockchain", "verifychain", &verifychain, true }, |