diff options
| author | MarcoFalke <[email protected]> | 2020-10-16 13:05:56 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-10-16 13:01:07 +0200 |
| commit | fa2b778d0cf723925af8710d52cae211d4f036df (patch) | |
| tree | dbbb686a98f1ae46ff0810931b8186734989f771 | |
| parent | Merge #19401: QA: Use GBT to get block versions correct (diff) | |
| download | discoin-fa2b778d0cf723925af8710d52cae211d4f036df.tar.xz discoin-fa2b778d0cf723925af8710d52cae211d4f036df.zip | |
test: Remove unused -blockversion from tests
| -rwxr-xr-x | test/functional/feature_csv_activation.py | 1 | ||||
| -rwxr-xr-x | test/functional/feature_notifications.py | 11 |
2 files changed, 6 insertions, 6 deletions
diff --git a/test/functional/feature_csv_activation.py b/test/functional/feature_csv_activation.py index 39e8bca75..46ba18b9b 100755 --- a/test/functional/feature_csv_activation.py +++ b/test/functional/feature_csv_activation.py @@ -150,7 +150,6 @@ class BIP68_112_113Test(BitcoinTestFramework): self.setup_clean_chain = True self.extra_args = [[ - '-blockversion=4', '-addresstype=legacy', '-par=1', # Use only one script thread to get the exact reject reason for testing ]] diff --git a/test/functional/feature_notifications.py b/test/functional/feature_notifications.py index 5522f2b7c..a5f27b058 100755 --- a/test/functional/feature_notifications.py +++ b/test/functional/feature_notifications.py @@ -41,11 +41,12 @@ class NotificationsTest(BitcoinTestFramework): # -alertnotify and -blocknotify on node0, walletnotify on node1 self.extra_args = [[ - "-alertnotify=echo > {}".format(os.path.join(self.alertnotify_dir, '%s')), - "-blocknotify=echo > {}".format(os.path.join(self.blocknotify_dir, '%s'))], - ["-blockversion=211", - "-rescan", - "-walletnotify=echo > {}".format(os.path.join(self.walletnotify_dir, notify_outputname('%w', '%s')))]] + "-alertnotify=echo > {}".format(os.path.join(self.alertnotify_dir, '%s')), + "-blocknotify=echo > {}".format(os.path.join(self.blocknotify_dir, '%s')), + ], [ + "-rescan", + "-walletnotify=echo > {}".format(os.path.join(self.walletnotify_dir, notify_outputname('%w', '%s'))), + ]] self.wallet_names = [self.default_wallet_name, self.wallet] super().setup_network() |