File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
beacon_node/network/src/network_beacon_processor Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff 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 { .. } => {
Original file line number Diff line number Diff 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,
You can’t perform that action at this time.
0 commit comments