diff options
| author | Andrew Chow <[email protected]> | 2020-06-04 23:43:39 -0400 |
|---|---|---|
| committer | Andrew Chow <[email protected]> | 2020-06-24 16:31:42 -0400 |
| commit | 5279d8bc07d601fe6a67ad665fbc7591fe73c7de (patch) | |
| tree | 0980c73654effe41bd15ecf24a787df16ddff939 /src/wallet/scriptpubkeyman.cpp | |
| parent | rpc: show both UTXOs in decodepsbt (diff) | |
| download | discoin-5279d8bc07d601fe6a67ad665fbc7591fe73c7de.tar.xz discoin-5279d8bc07d601fe6a67ad665fbc7591fe73c7de.zip | |
psbt: Allow both non_witness_utxo and witness_utxo
Diffstat (limited to 'src/wallet/scriptpubkeyman.cpp')
| -rw-r--r-- | src/wallet/scriptpubkeyman.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/wallet/scriptpubkeyman.cpp b/src/wallet/scriptpubkeyman.cpp index d57f99a20..38d7d782d 100644 --- a/src/wallet/scriptpubkeyman.cpp +++ b/src/wallet/scriptpubkeyman.cpp @@ -597,11 +597,6 @@ TransactionError LegacyScriptPubKeyMan::FillPSBT(PartiallySignedTransaction& psb continue; } - // Verify input looks sane. This will check that we have at most one uxto, witness or non-witness. - if (!input.IsSane()) { - return TransactionError::INVALID_PSBT; - } - // Get the Sighash type if (sign && input.sighash_type > 0 && input.sighash_type != sighash_type) { return TransactionError::SIGHASH_MISMATCH; @@ -2086,11 +2081,6 @@ TransactionError DescriptorScriptPubKeyMan::FillPSBT(PartiallySignedTransaction& continue; } - // Verify input looks sane. This will check that we have at most one uxto, witness or non-witness. - if (!input.IsSane()) { - return TransactionError::INVALID_PSBT; - } - // Get the Sighash type if (sign && input.sighash_type > 0 && input.sighash_type != sighash_type) { return TransactionError::SIGHASH_MISMATCH; |