|
|
@ -1357,7 +1357,8 @@ class SegWitTest(BitcoinTestFramework):
|
|
|
|
def test_segwit_versions(self):
|
|
|
|
def test_segwit_versions(self):
|
|
|
|
"""Test validity of future segwit version transactions.
|
|
|
|
"""Test validity of future segwit version transactions.
|
|
|
|
|
|
|
|
|
|
|
|
Future segwit version transactions are non-standard, but valid in blocks.
|
|
|
|
Future segwit versions are non-standard to spend, but valid in blocks.
|
|
|
|
|
|
|
|
Sending to future segwit versions is always allowed.
|
|
|
|
Can run this before and after segwit activation."""
|
|
|
|
Can run this before and after segwit activation."""
|
|
|
|
|
|
|
|
|
|
|
|
NUM_SEGWIT_VERSIONS = 17 # will test OP_0, OP1, ..., OP_16
|
|
|
|
NUM_SEGWIT_VERSIONS = 17 # will test OP_0, OP1, ..., OP_16
|
|
|
@ -1397,7 +1398,7 @@ class SegWitTest(BitcoinTestFramework):
|
|
|
|
assert len(self.nodes[0].getrawmempool()) == 0
|
|
|
|
assert len(self.nodes[0].getrawmempool()) == 0
|
|
|
|
|
|
|
|
|
|
|
|
# Finally, verify that version 0 -> version 1 transactions
|
|
|
|
# Finally, verify that version 0 -> version 1 transactions
|
|
|
|
# are non-standard
|
|
|
|
# are standard
|
|
|
|
script_pubkey = CScript([CScriptOp(OP_1), witness_hash])
|
|
|
|
script_pubkey = CScript([CScriptOp(OP_1), witness_hash])
|
|
|
|
tx2 = CTransaction()
|
|
|
|
tx2 = CTransaction()
|
|
|
|
tx2.vin = [CTxIn(COutPoint(tx.sha256, 0), b"")]
|
|
|
|
tx2.vin = [CTxIn(COutPoint(tx.sha256, 0), b"")]
|
|
|
@ -1405,10 +1406,9 @@ class SegWitTest(BitcoinTestFramework):
|
|
|
|
tx2.wit.vtxinwit.append(CTxInWitness())
|
|
|
|
tx2.wit.vtxinwit.append(CTxInWitness())
|
|
|
|
tx2.wit.vtxinwit[0].scriptWitness.stack = [witness_program]
|
|
|
|
tx2.wit.vtxinwit[0].scriptWitness.stack = [witness_program]
|
|
|
|
tx2.rehash()
|
|
|
|
tx2.rehash()
|
|
|
|
# Gets accepted to test_node, because standardness of outputs isn't
|
|
|
|
# Gets accepted to both policy-enforcing nodes and others.
|
|
|
|
# checked with fRequireStandard
|
|
|
|
|
|
|
|
test_transaction_acceptance(self.nodes[0], self.test_node, tx2, with_witness=True, accepted=True)
|
|
|
|
test_transaction_acceptance(self.nodes[0], self.test_node, tx2, with_witness=True, accepted=True)
|
|
|
|
test_transaction_acceptance(self.nodes[1], self.std_node, tx2, with_witness=True, accepted=False)
|
|
|
|
test_transaction_acceptance(self.nodes[1], self.std_node, tx2, with_witness=True, accepted=True)
|
|
|
|
temp_utxo.pop() # last entry in temp_utxo was the output we just spent
|
|
|
|
temp_utxo.pop() # last entry in temp_utxo was the output we just spent
|
|
|
|
temp_utxo.append(UTXO(tx2.sha256, 0, tx2.vout[0].nValue))
|
|
|
|
temp_utxo.append(UTXO(tx2.sha256, 0, tx2.vout[0].nValue))
|
|
|
|
|
|
|
|
|
|
|
|