diff options
author | John Newbery <john@johnnewbery.com> | 2017-08-24 11:37:25 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2017-10-03 18:43:29 +0200 |
commit | bb5e7cb308b58a1c16db1275dfca1a31e2bba71f (patch) | |
tree | c2cb3f348525b7ee868231c45baf10bab9d80f9b /test/functional/zmq_test.py | |
parent | 4d3ba18386c7a09086d06c8b640c19343ff34188 (diff) |
[tests] Avoid passing around member variables in test_framework
Github-Pull: #11121
Rebased-From: 6cf094a0229d051ab8a15189c8a0bc6011919e72
Diffstat (limited to 'test/functional/zmq_test.py')
-rwxr-xr-x | test/functional/zmq_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/zmq_test.py b/test/functional/zmq_test.py index 603b7a1b94..b5a22ea07f 100755 --- a/test/functional/zmq_test.py +++ b/test/functional/zmq_test.py @@ -42,7 +42,7 @@ class ZMQTest (BitcoinTestFramework): ip_address = "tcp://127.0.0.1:28332" self.zmqSubSocket.connect(ip_address) self.extra_args = [['-zmqpubhashtx=%s' % ip_address, '-zmqpubhashblock=%s' % ip_address], []] - self.add_nodes(self.num_nodes, self.options.tmpdir, self.extra_args) + self.add_nodes(self.num_nodes, self.extra_args) self.start_nodes() def run_test(self): |