From 3ead0ce8410f2c54f18e22101f2fa4f0f9d60bc6 Mon Sep 17 00:00:00 2001 From: Byron Hambly Date: Fri, 8 Sep 2023 09:57:28 +0200 Subject: [PATCH] test: fix node_fastmerkle exception in interface_zmq.py --- test/functional/interface_zmq.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/functional/interface_zmq.py b/test/functional/interface_zmq.py index f4be083e8b..c47c660d1a 100755 --- a/test/functional/interface_zmq.py +++ b/test/functional/interface_zmq.py @@ -23,6 +23,7 @@ from test_framework.util import ( assert_equal, assert_raises_rpc_error, ) +from test_framework import util from test_framework.netutil import test_ipv6_local from io import BytesIO from time import sleep @@ -111,6 +112,7 @@ class ZMQTest (BitcoinTestFramework): self.skip_if_no_bitcoind_zmq() def run_test(self): + util.node_fastmerkle = self.nodes[0] self.ctx = zmq.Context() try: self.test_basic()