Skip to content

Commit

Permalink
setup consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
alex v committed Dec 9, 2019
1 parent 475cf7b commit 59c872a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions qa/rpc-tests/cfund-fork-reorg-proposal.py
Expand Up @@ -16,11 +16,12 @@ class CfundForkReorgProposal(NavCoinTestFramework):
def __init__(self):
super().__init__()
self.setup_clean_chain = True
self.node_args = [['-debug=dao'], ['-debug=dao']]
self.num_nodes = 2

def setup_network(self, split=False):
self.nodes = self.setup_nodes()
self.nodes = []
self.nodes.append(start_node(0, self.options.tmpdir, ["-debug=dao"]))
self.nodes.append(start_node(1, self.options.tmpdir, ["-debug=dao"]))
connect_nodes_bi(self.nodes, 0, 1)
self.is_network_split = False

Expand Down

0 comments on commit 59c872a

Please sign in to comment.