From f6b5dd59c108da5031a058ed12e440998161b481 Mon Sep 17 00:00:00 2001 From: "Jason B. Cox" Date: Tue, 30 Jun 2020 18:10:01 -0700 Subject: [PATCH] Cleanup unused --with-phononactivation from test_framework Summary: See title. Test Plan: `test_runner.py` Reviewers: #bitcoin_abc, Fabien Reviewed By: #bitcoin_abc, Fabien Differential Revision: https://reviews.bitcoinabc.org/D6797 --- test/functional/test_framework/test_framework.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index 78d43dbdac..2b7e598f24 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -130,8 +130,6 @@ def main(self): help="Attach a python debugger if test fails") parser.add_argument("--usecli", dest="usecli", default=False, action="store_true", help="use bitcoin-cli instead of RPC for all commands") - parser.add_argument("--with-phononactivation", dest="phononactivation", default=False, action="store_true", - help="Activate phonon update on timestamp {}".format(TIMESTAMP_IN_THE_PAST)) parser.add_argument("--with-axionactivation", dest="axionactivation", default=False, action="store_true", help="Activate axion update on timestamp {}".format(TIMESTAMP_IN_THE_PAST)) self.add_options(parser) @@ -334,9 +332,6 @@ def add_nodes(self, num_nodes, extra_args=None, use_cli=self.options.usecli, emulator=self.options.emulator, )) - if self.options.phononactivation: - self.nodes[i].extend_default_args( - ["-phononactivationtime={}".format(TIMESTAMP_IN_THE_PAST)]) if self.options.axionactivation: self.nodes[i].extend_default_args( ["-axionactivationtime={}".format(TIMESTAMP_IN_THE_PAST)]) @@ -501,9 +496,6 @@ def _initialize_chain(self): if i > 0: self.nodes[i].extend_default_args( ["-connect=127.0.0.1:" + str(p2p_port(0))]) - if self.options.phononactivation: - self.nodes[i].extend_default_args( - ["-phononactivationtime={}".format(TIMESTAMP_IN_THE_PAST)]) if self.options.axionactivation: self.nodes[i].extend_default_args( ["-axionactivationtime={}".format(TIMESTAMP_IN_THE_PAST)])