From c9cc76dcaad85aa9441f18d38298f27a0ffd852a Mon Sep 17 00:00:00 2001 From: John Newbery Date: Mon, 3 Apr 2017 09:34:04 -0400 Subject: [tests] Remove is_network_split from funtional test cases --- test/functional/replace-by-fee.py | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to 'test/functional/replace-by-fee.py') diff --git a/test/functional/replace-by-fee.py b/test/functional/replace-by-fee.py index 163c304eba..e940ce535c 100755 --- a/test/functional/replace-by-fee.py +++ b/test/functional/replace-by-fee.py @@ -65,17 +65,12 @@ class ReplaceByFeeTest(BitcoinTestFramework): super().__init__() self.num_nodes = 1 self.setup_clean_chain = False - - def setup_network(self): - self.nodes = [] - self.nodes.append(start_node(0, self.options.tmpdir, ["-maxorphantx=1000", - "-whitelist=127.0.0.1", - "-limitancestorcount=50", - "-limitancestorsize=101", - "-limitdescendantcount=200", - "-limitdescendantsize=101" - ])) - self.is_network_split = False + self.extra_args= [["-maxorphantx=1000", + "-whitelist=127.0.0.1", + "-limitancestorcount=50", + "-limitancestorsize=101", + "-limitdescendantcount=200", + "-limitdescendantsize=101"]] def run_test(self): make_utxo(self.nodes[0], 1*COIN) -- cgit v1.2.3