diff options
| author | MarcoFalke <[email protected]> | 2018-12-22 17:33:48 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-12-22 17:26:49 +0100 |
| commit | 4999992c34a3b7acc86194924915e6216be5fe20 (patch) | |
| tree | 9b0bd44ffc0f079317d24eb5f8befe02cd8fd87d | |
| parent | scripted-diff: Rename rpc_timewait to rpc_timeout (diff) | |
| download | discoin-4999992c34a3b7acc86194924915e6216be5fe20.tar.xz discoin-4999992c34a3b7acc86194924915e6216be5fe20.zip | |
whitespace: Split ~300 char line into multiple ones
| -rwxr-xr-x | test/functional/test_framework/test_framework.py | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/test/functional/test_framework/test_framework.py b/test/functional/test_framework/test_framework.py index 5304c234c..570f821b2 100755 --- a/test/functional/test_framework/test_framework.py +++ b/test/functional/test_framework/test_framework.py @@ -460,7 +460,18 @@ class BitcoinTestFramework(metaclass=BitcoinTestMetaClass): args = [self.options.bitcoind, "-datadir=" + datadir, '-disablewallet'] if i > 0: args.append("-connect=127.0.0.1:" + str(p2p_port(0))) - self.nodes.append(TestNode(i, get_datadir_path(self.options.cachedir, i), extra_conf=["bind=127.0.0.1"], extra_args=[], rpchost=None, timewait=self.rpc_timeout, bitcoind=self.options.bitcoind, bitcoin_cli=self.options.bitcoincli, mocktime=self.mocktime, coverage_dir=None)) + self.nodes.append(TestNode( + i, + get_datadir_path(self.options.cachedir, i), + extra_conf=["bind=127.0.0.1"], + extra_args=[], + rpchost=None, + timewait=self.rpc_timeout, + bitcoind=self.options.bitcoind, + bitcoin_cli=self.options.bitcoincli, + mocktime=self.mocktime, + coverage_dir=None, + )) self.nodes[i].args = args self.start_node(i) |