mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
Increase feature_taproot inactive test coverage
This commit is contained in:
parent
525cbd425e
commit
3d0556d410
1 changed files with 5 additions and 1 deletions
|
@ -1451,7 +1451,11 @@ class TaprootTest(BitcoinTestFramework):
|
|||
|
||||
# Pre-taproot activation tests.
|
||||
self.log.info("Pre-activation tests...")
|
||||
self.test_spenders(self.nodes[0], spenders_taproot_inactive(), input_counts=[1, 2, 2, 2, 2, 3])
|
||||
# Run each test twice; once in isolation, and once combined with others. Testing in isolation
|
||||
# means that the standardness is verified in every test (as combined transactions are only standard
|
||||
# when all their inputs are standard).
|
||||
self.test_spenders(self.nodes[0], spenders_taproot_inactive(), input_counts=[1])
|
||||
self.test_spenders(self.nodes[0], spenders_taproot_inactive(), input_counts=[2, 3])
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue