fix: change port to use for zmq in interface_zmq_dash.py

It resolves a conflict with interface_zmq.py and intermittent failure
This commit is contained in:
Konstantin Akimov 2024-03-15 00:17:50 +07:00
parent 0ce66fd477
commit 2f788aa76d
No known key found for this signature in database
GPG Key ID: 2176C4A5D01EA524

View File

@ -100,7 +100,7 @@ class TestP2PConn(P2PInterface):
class DashZMQTest (DashTestFramework):
def set_test_params(self):
# That's where the zmq publisher will listen for subscriber
self.address = "tcp://127.0.0.1:28333"
self.address = "tcp://127.0.0.1:28331"
# node0 creates all available ZMQ publisher
node0_extra_args = ["-zmqpub%s=%s" % (pub.value, self.address) for pub in ZMQPublisher]
node0_extra_args.append("-whitelist=127.0.0.1")