diff --git a/src/rpc/client.cpp b/src/rpc/client.cpp index 7281fe6605..0906a10b89 100644 --- a/src/rpc/client.cpp +++ b/src/rpc/client.cpp @@ -104,11 +104,13 @@ static const CRPCConvertParam vRPCConvertParams[] = { "combinerawtransaction", 0, "txs" }, { "fundrawtransaction", 1, "options" }, { "fundrawtransaction", 2, "iswitness" }, + { "fundrawtransaction", 3, "solving_data" }, { "walletcreatefundedpsbt", 0, "inputs" }, { "walletcreatefundedpsbt", 1, "outputs" }, { "walletcreatefundedpsbt", 2, "locktime" }, { "walletcreatefundedpsbt", 3, "options" }, { "walletcreatefundedpsbt", 4, "bip32derivs" }, + { "walletcreatefundedpsbt", 5, "solving_data" }, { "walletprocesspsbt", 1, "sign" }, { "walletprocesspsbt", 3, "bip32derivs" }, { "walletfillpsbtdata", 1, "bip32derivs" }, diff --git a/src/script/signingprovider.h b/src/script/signingprovider.h index c40fecac5c..41ad500d43 100644 --- a/src/script/signingprovider.h +++ b/src/script/signingprovider.h @@ -8,12 +8,11 @@ #include #include +#include