diff --git a/zebra-network/src/peer/handshake.rs b/zebra-network/src/peer/handshake.rs index 51d694186..a1e6fd925 100644 --- a/zebra-network/src/peer/handshake.rs +++ b/zebra-network/src/peer/handshake.rs @@ -398,8 +398,11 @@ where async move { if let Ok(Message::Inv(hashes)) = &msg { // We ignore inventory messages with more than one - // item because they are most likely replies to a - // query rather than a newly gossiped block. + // block, because they are most likely replies to a + // query, rather than a newly gossiped block. + // + // (We process inventory messages with any number of + // transactions.) // // https://zebra.zfnd.org/dev/rfcs/0003-inventory-tracking.html#inventory-monitoring match hashes.as_slice() {