diff options
author | MarcoFalke <falke.marco@gmail.com> | 2017-06-02 12:08:48 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2017-06-02 12:10:41 +0200 |
commit | 329fc1dce7a1c372c8b10c2f2f8732b2c60daff0 (patch) | |
tree | 79a6fb944445bf77883bfb1c993d7c47b49a8305 /test/functional/zmq_test.py | |
parent | 1aefc94dd78d6e0c9209cb09fc16f53dedf42108 (diff) | |
parent | 53f6775fe14417a5b975a40b3c0964a9e86d5f39 (diff) |
Merge #10359: [tests] functional tests should call BitcoinTestFramework start/stop node methods
53f6775 fixup: fix nits (John Newbery)
a433d8a [tests] Update start/stop node functions to be private module functions (John Newbery)
d8c218f [tests] Functional tests call self.start_node(s) and self.stop_node(s) (John Newbery)
Tree-SHA512: 9cc01584a5e57686b7e7cb1c4c5186ad8cc7eb650d6d4f27b06bdb5e249a10966705814bdfb22d9ff2d5d3326911e489bf3d22257d751a299c0b24b7f40bffb5
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 f4d86f1b46..ce39cfefdc 100755 --- a/test/functional/zmq_test.py +++ b/test/functional/zmq_test.py @@ -39,7 +39,7 @@ class ZMQTest (BitcoinTestFramework): self.zmqSubSocket.setsockopt(zmq.SUBSCRIBE, b"hashblock") self.zmqSubSocket.setsockopt(zmq.SUBSCRIBE, b"hashtx") self.zmqSubSocket.connect("tcp://127.0.0.1:%i" % self.port) - self.nodes = start_nodes(self.num_nodes, self.options.tmpdir, extra_args=[ + self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir, extra_args=[ ['-zmqpubhashtx=tcp://127.0.0.1:'+str(self.port), '-zmqpubhashblock=tcp://127.0.0.1:'+str(self.port)], [], [], |