Skip to content

Commit fa2b778

Browse files
author
MarcoFalke
committed
test: Remove unused -blockversion from tests
1 parent cb21d86 commit fa2b778

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

test/functional/feature_csv_activation.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ def set_test_params(self):
150150
self.setup_clean_chain = True
151151
self.extra_args = [[
152152
153-
'-blockversion=4',
154153
'-addresstype=legacy',
155154
'-par=1', # Use only one script thread to get the exact reject reason for testing
156155
]]

test/functional/feature_notifications.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,12 @@ def setup_network(self):
4141

4242
# -alertnotify and -blocknotify on node0, walletnotify on node1
4343
self.extra_args = [[
44-
"-alertnotify=echo > {}".format(os.path.join(self.alertnotify_dir, '%s')),
45-
"-blocknotify=echo > {}".format(os.path.join(self.blocknotify_dir, '%s'))],
46-
["-blockversion=211",
47-
"-rescan",
48-
"-walletnotify=echo > {}".format(os.path.join(self.walletnotify_dir, notify_outputname('%w', '%s')))]]
44+
"-alertnotify=echo > {}".format(os.path.join(self.alertnotify_dir, '%s')),
45+
"-blocknotify=echo > {}".format(os.path.join(self.blocknotify_dir, '%s')),
46+
], [
47+
"-rescan",
48+
"-walletnotify=echo > {}".format(os.path.join(self.walletnotify_dir, notify_outputname('%w', '%s'))),
49+
]]
4950
self.wallet_names = [self.default_wallet_name, self.wallet]
5051
super().setup_network()
5152

0 commit comments

Comments
 (0)