Skip to content

Commit c05a78a

Browse files
authored
Merge of #8367
2 parents 8f7dcf0 + ddc879f commit c05a78a

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

beacon_node/network/src/network_beacon_processor/gossip_methods.rs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -735,12 +735,11 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
735735
// Data column is available via either the EL or reconstruction.
736736
// Do not penalise the peer.
737737
// Gossip filter should filter any duplicates received after this.
738-
debug!(
739-
%slot,
740-
%block_root,
741-
%index,
742-
"Received already available column sidecar. Ignoring the column sidecar"
743-
)
738+
self.propagate_validation_result(
739+
message_id,
740+
peer_id,
741+
MessageAcceptance::Ignore,
742+
);
744743
}
745744
GossipDataColumnError::FutureSlot { .. }
746745
| GossipDataColumnError::PastFinalizedSlot { .. } => {

beacon_node/network/src/network_beacon_processor/mod.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -866,6 +866,9 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
866866
"Reconstruction not required for block"
867867
);
868868
}
869+
Err(BlockError::DuplicateFullyImported(_)) => {
870+
debug!("Block already imported in parallel with reconstruction");
871+
}
869872
Err(e) => {
870873
error!(
871874
%block_root,

0 commit comments

Comments
 (0)