We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e70512a commit 2399a06Copy full SHA for 2399a06
test/functional/interface_zmq.py
@@ -123,6 +123,13 @@ def test_basic(self):
123
hex = rawtx.receive()
124
assert_equal(payment_txid, hash256_reversed(hex).hex())
125
126
+ # Mining the block with this tx should result in second notification
127
+ # after coinbase tx notification
128
+ self.nodes[0].generatetoaddress(1, ADDRESS_BCRT1_UNSPENDABLE)
129
+ hashtx.receive()
130
+ txid = hashtx.receive()
131
+ assert_equal(payment_txid, txid.hex())
132
+
133
134
self.log.info("Test the getzmqnotifications RPC")
135
assert_equal(self.nodes[0].getzmqnotifications(), [
0 commit comments