diff options
| author | Pieter Wuille <[email protected]> | 2019-02-16 14:18:54 -0800 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2019-05-10 14:22:33 -0700 |
| commit | eaf4f887348a08c620732125ad4430e1a133d434 (patch) | |
| tree | 81dcc32ec90bd4c5ea8b0ada61e348cfd6b4b0d2 /src/rpc/rawtransaction.cpp | |
| parent | Merge #15607: [Docs] Release process updates (diff) | |
| download | discoin-eaf4f887348a08c620732125ad4430e1a133d434.tar.xz discoin-eaf4f887348a08c620732125ad4430e1a133d434.zip | |
Abstract out IsSegWitOutput from utxoupdatepsbt
This is not a pure refactor; additional functionality is added in
IsSegWitOutput which lets it recurse into P2SH when a
SigningProvider is provided that knows about the inner script.
Diffstat (limited to 'src/rpc/rawtransaction.cpp')
| -rw-r--r-- | src/rpc/rawtransaction.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index b3926786d..7675ad010 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -1540,9 +1540,7 @@ UniValue utxoupdatepsbt(const JSONRPCRequest& request) const Coin& coin = view.AccessCoin(psbtx.tx->vin[i].prevout); - std::vector<std::vector<unsigned char>> solutions_data; - txnouttype which_type = Solver(coin.out.scriptPubKey, solutions_data); - if (which_type == TX_WITNESS_V0_SCRIPTHASH || which_type == TX_WITNESS_V0_KEYHASH || which_type == TX_WITNESS_UNKNOWN) { + if (IsSegWitOutput(DUMMY_SIGNING_PROVIDER, coin.out.scriptPubKey)) { input.witness_utxo = coin.out; } } |