mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
[tests] destroy zmq context in zmq_tests.py
This commit is contained in:
parent
b1bac1cb7e
commit
7c51e9f0dc
@ -45,6 +45,14 @@ class ZMQTest (BitcoinTestFramework):
|
|||||||
self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir, extra_args)
|
self.nodes = self.start_nodes(self.num_nodes, self.options.tmpdir, extra_args)
|
||||||
|
|
||||||
def run_test(self):
|
def run_test(self):
|
||||||
|
try:
|
||||||
|
self._zmq_test()
|
||||||
|
finally:
|
||||||
|
# Destroy the zmq context
|
||||||
|
self.log.debug("Destroying zmq context")
|
||||||
|
self.zmqContext.destroy(linger=None)
|
||||||
|
|
||||||
|
def _zmq_test(self):
|
||||||
genhashes = self.nodes[0].generate(1)
|
genhashes = self.nodes[0].generate(1)
|
||||||
self.sync_all()
|
self.sync_all()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user