Merge 6109bc529e234b464d406495bb9644254ca7fc9e into 5f4422d68dc3530c353af1f87499de1c864b60ad

This commit is contained in:
Chris Stewart 2025-03-17 03:53:28 +01:00 committed by GitHub
commit 98924bc07e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 22 additions and 0 deletions

View File

@ -26,12 +26,14 @@ from test_framework.messages import (
COutPoint,
CTransaction,
CTxIn,
CTxInWitness,
CTxOut,
MAX_MONEY,
SEQUENCE_FINAL,
)
from test_framework.blocktools import create_tx_with_script, MAX_BLOCK_SIGOPS
from test_framework.script import (
OP_TRUE,
CScript,
OP_0,
OP_2DIV,
@ -129,6 +131,22 @@ class SizeTooSmall(BadTxTemplate):
tx.calc_sha256()
return tx
# reject a transaction that contains a witness
# but doesnt spend a segwit output
class ExtraWitness(BadTxTemplate):
expect_disconnect = False
valid_in_block = False
block_reject_reason = "mandatory-script-verify-flag-failed (Witness provided for non-witness script)"
def get_tx(self):
tx = CTransaction()
tx.vin.append(self.valid_txin)
tx.vout.append(CTxOut(0, CScript()))
tx.wit.vtxinwit = [CTxInWitness()]
tx.wit.vtxinwit[0].scriptWitness.stack = [CScript([OP_TRUE])]
tx.calc_sha256()
return tx
class BadInputOutpointIndex(BadTxTemplate):
# Won't be rejected - nonexistent outpoint index is treated as an orphan since the coins

View File

@ -7,6 +7,7 @@ import copy
import time
from test_framework.blocktools import (
add_witness_commitment,
create_block,
create_coinbase,
create_tx_with_script,
@ -1400,6 +1401,9 @@ class FullBlockTest(BitcoinTestFramework):
self.add_transactions_to_block(block, new_transactions)
old_sha256 = block.sha256
block.hashMerkleRoot = block.calc_merkle_root()
has_witness_tx = any(not tx.wit.is_null() for tx in block.vtx)
if has_witness_tx:
add_witness_commitment(block)
block.solve()
# Update the internal state just like in next_block
self.tip = block