From 682b59a2627903a7a66be3b59f719351225d8560 Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Thu, 16 Jan 2020 21:50:12 +0300 Subject: [PATCH] Fix 11452 --- test/functional/zmq_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/zmq_test.py b/test/functional/zmq_test.py index a2998470cd..8bc3c6e522 100755 --- a/test/functional/zmq_test.py +++ b/test/functional/zmq_test.py @@ -109,7 +109,7 @@ class ZMQTest (BitcoinTestFramework): # Should receive the generated raw block. block = self.rawblock.receive() - assert_equal(genhashes[x], bytes_to_hex_str(hash256(block[:80]))) + assert_equal(genhashes[x], dashhash_helper(block[:80])) self.log.info("Wait for tx from second node") payment_txid = self.nodes[1].sendtoaddress(self.nodes[0].getnewaddress(), 1.0)