diff options
author | John Newbery <john@johnnewbery.com> | 2017-08-24 11:37:25 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2017-09-01 12:25:54 -0400 |
commit | 6cf094a0229d051ab8a15189c8a0bc6011919e72 (patch) | |
tree | 81fa4f2d2c6179cc6f3c0a7e2c6d9d818414fb24 /test/functional/rpcbind_test.py | |
parent | 36b626867087e9fae6d85f926248997ebff327b7 (diff) |
[tests] Avoid passing around member variables in test_framework
Diffstat (limited to 'test/functional/rpcbind_test.py')
-rwxr-xr-x | test/functional/rpcbind_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/rpcbind_test.py b/test/functional/rpcbind_test.py index e9d64af204..a7661421ff 100755 --- a/test/functional/rpcbind_test.py +++ b/test/functional/rpcbind_test.py @@ -20,7 +20,7 @@ class RPCBindTest(BitcoinTestFramework): self.num_nodes = 1 def setup_network(self): - self.add_nodes(self.num_nodes, self.options.tmpdir, None) + self.add_nodes(self.num_nodes, None) def run_bind_test(self, allow_ips, connect_to, addresses, expected): ''' |