aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_block.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/feature_block.py')
-rwxr-xr-xtest/functional/feature_block.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/feature_block.py b/test/functional/feature_block.py
index fe9bbda14b..fc1255de86 100755
--- a/test/functional/feature_block.py
+++ b/test/functional/feature_block.py
@@ -80,7 +80,7 @@ class FullBlockTest(ComparisonTestFramework):
block.vtx.extend(tx_list)
# this is a little handier to use than the version in blocktools.py
- def create_tx(self, spend_tx, n, value, script=CScript([OP_TRUE])):
+ def create_tx(self, spend_tx, n, value, script=CScript([OP_TRUE, OP_DROP] * 15 + [OP_TRUE])):
tx = create_transaction(spend_tx, n, b"", value, script)
return tx
@@ -1288,6 +1288,5 @@ class FullBlockTest(ComparisonTestFramework):
chain1_tip += 2
-
if __name__ == '__main__':
FullBlockTest().main()