Skip to content

Commit

Permalink
Remove penalty for duplicate columns (expected due to reconstruction) (
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmygchen authored May 16, 2024
1 parent 4946e72 commit 71520c9
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1013,6 +1013,14 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
}
}
}
Err(BlockError::BlockIsAlreadyKnown(_)) => {
debug!(
self.log,
"Ignoring gossip column already imported";
"block_root" => ?block_root,
"data_column_index" => data_column_index,
);
}
Err(err) => {
debug!(
self.log,
Expand All @@ -1027,10 +1035,6 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
PeerAction::MidToleranceError,
"bad_gossip_data_column_ssz",
);
trace!(
self.log,
"Invalid gossip data column ssz";
);
}
}
}
Expand Down

0 comments on commit 71520c9

Please sign in to comment.