From 2f788aa76d374bb3da94ae80c1c638175856d9fd Mon Sep 17 00:00:00 2001 From: Konstantin Akimov Date: Fri, 15 Mar 2024 00:17:50 +0700 Subject: [PATCH] fix: change port to use for zmq in interface_zmq_dash.py It resolves a conflict with interface_zmq.py and intermittent failure --- test/functional/interface_zmq_dash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/interface_zmq_dash.py b/test/functional/interface_zmq_dash.py index ff27ab18c3..70dc014a5f 100755 --- a/test/functional/interface_zmq_dash.py +++ b/test/functional/interface_zmq_dash.py @@ -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")