diff options
author | MeshCollider <dobsonsa68@gmail.com> | 2017-08-28 18:00:21 +1200 |
---|---|---|
committer | MeshCollider <dobsonsa68@gmail.com> | 2017-09-06 11:24:59 +1200 |
commit | bbdbe805a25ae7c63e6237b3f30b8379ea29ac22 (patch) | |
tree | 938f2bb10a57b878566dc3f8020f2087b2d83234 /src/rpc/client.cpp | |
parent | 28485c783d826fa6ce14aaf215e82118c1af8db7 (diff) |
Add iswitness parameter to decode- and fundrawtransaction RPCs
Diffstat (limited to 'src/rpc/client.cpp')
-rw-r--r-- | src/rpc/client.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rpc/client.cpp b/src/rpc/client.cpp index 4179453782..e73319d146 100644 --- a/src/rpc/client.cpp +++ b/src/rpc/client.cpp @@ -93,11 +93,13 @@ static const CRPCConvertParam vRPCConvertParams[] = { "createrawtransaction", 1, "outputs" }, { "createrawtransaction", 2, "locktime" }, { "createrawtransaction", 3, "replaceable" }, + { "decoderawtransaction", 1, "iswitness" }, { "signrawtransaction", 1, "prevtxs" }, { "signrawtransaction", 2, "privkeys" }, { "sendrawtransaction", 1, "allowhighfees" }, { "combinerawtransaction", 0, "txs" }, { "fundrawtransaction", 1, "options" }, + { "fundrawtransaction", 2, "iswitness" }, { "gettxout", 1, "n" }, { "gettxout", 2, "include_mempool" }, { "gettxoutproof", 0, "txids" }, |