We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31e80b4 commit ee77b73Copy full SHA for ee77b73
1 file changed
protocols/gossipsub/src/behaviour.rs
@@ -2991,6 +2991,11 @@ where
2991
continue;
2992
}
2993
2994
+ #[cfg(feature = "partial_messages")]
2995
+ if self.partial_messages_extension.requests_partial(peer_id, topic) {
2996
+ continue;
2997
+ }
2998
+
2999
tracing::debug!(%peer_id, message_id=%msg_id, "Sending message to peer");
3000
3001
self.send_message(
0 commit comments