We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4946e72 commit 71520c9Copy full SHA for 71520c9
beacon_node/network/src/network_beacon_processor/gossip_methods.rs
@@ -1013,6 +1013,14 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
1013
}
1014
1015
1016
+ Err(BlockError::BlockIsAlreadyKnown(_)) => {
1017
+ debug!(
1018
+ self.log,
1019
+ "Ignoring gossip column already imported";
1020
+ "block_root" => ?block_root,
1021
+ "data_column_index" => data_column_index,
1022
+ );
1023
+ }
1024
Err(err) => {
1025
debug!(
1026
self.log,
@@ -1027,10 +1035,6 @@ impl<T: BeaconChainTypes> NetworkBeaconProcessor<T> {
1027
1035
PeerAction::MidToleranceError,
1028
1036
"bad_gossip_data_column_ssz",
1029
1037
);
1030
- trace!(
1031
- self.log,
1032
- "Invalid gossip data column ssz";
1033
- );
1034
1038
1039
1040
0 commit comments