Skip to content

Commit 6b7f514

Browse files
committed
follow-up #5668 - correct flags for params
1 parent 610cd14 commit 6b7f514

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/functional/feature_cltv.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def set_test_params(self):
6060
'-dip3params=9000:9000',
6161
'-par=1', # Use only one script thread to get the exact reject reason for testing
6262
'-acceptnonstdtxn=1', # cltv_invalidate is nonstandard
63-
'-vbparams=v20:0:999999999999:480:384:288:5:-1' # Delay v20 for this test as we don't need it
63+
'-vbparams=v20:0:999999999999:480:384:288:5:0' # Delay v20 for this test as we don't need it
6464
]]
6565
self.setup_clean_chain = True
6666
self.rpc_timeout = 480

test/functional/feature_dersig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def unDERify(tx):
4040
class BIP66Test(BitcoinTestFramework):
4141
def set_test_params(self):
4242
self.num_nodes = 1
43-
self.extra_args = [['[email protected]', '-dip3params=9000:9000', '-par=1', '-vbparams=v20:0:999999999999:480:384:288:5:-1']] # Use only one script thread to get the exact reject reason for testing
43+
self.extra_args = [['[email protected]', '-dip3params=9000:9000', '-par=1', '-vbparams=v20:0:999999999999:480:384:288:5:0']] # Use only one script thread to get the exact reject reason for testing
4444
self.setup_clean_chain = True
4545
self.rpc_timeout = 240
4646

0 commit comments

Comments
 (0)