aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJames O'Beirne <james.obeirne@pm.me>2022-11-10 16:09:25 -0500
committerJames O'Beirne <james.obeirne@pm.me>2023-09-30 06:38:47 -0400
commitf073917a9e7ba423643dcae0339776470b628f65 (patch)
tree7aa1dd7d405dbc63dc7f5ccdae54d38e7131e4c7 /doc
parent4d8f4dcb450d31e4847804e62bf91545b949fa14 (diff)
validationinterface: only send zmq notifications for active
Diffstat (limited to 'doc')
-rw-r--r--doc/zmq.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/zmq.md b/doc/zmq.md
index 4055505d74..07c340fb99 100644
--- a/doc/zmq.md
+++ b/doc/zmq.md
@@ -113,11 +113,11 @@ Where the 8-byte uints correspond to the mempool sequence number.
| hashtx | <32-byte transaction hash in Little Endian> | <uint32 sequence number in Little Endian>
-`rawblock`: Notifies when the chain tip is updated. Messages are ZMQ multipart messages with three parts. The first part is the topic (`rawblock`), the second part is the serialized block, and the last part is a sequence number (representing the message count to detect lost messages).
+`rawblock`: Notifies when the chain tip is updated. When assumeutxo is in use, this notification will not be issued for historical blocks connected to the background validation chainstate. Messages are ZMQ multipart messages with three parts. The first part is the topic (`rawblock`), the second part is the serialized block, and the last part is a sequence number (representing the message count to detect lost messages).
| rawblock | <serialized block> | <uint32 sequence number in Little Endian>
-`hashblock`: Notifies when the chain tip is updated. Messages are ZMQ multipart messages with three parts. The first part is the topic (`hashblock`), the second part is the 32-byte block hash, and the last part is a sequence number (representing the message count to detect lost messages).
+`hashblock`: Notifies when the chain tip is updated. When assumeutxo is in use, this notification will not be issued for historical blocks connected to the background validation chainstate. Messages are ZMQ multipart messages with three parts. The first part is the topic (`hashblock`), the second part is the 32-byte block hash, and the last part is a sequence number (representing the message count to detect lost messages).
| hashblock | <32-byte block hash in Little Endian> | <uint32 sequence number in Little Endian>