@@ -793,7 +793,7 @@ impl<T: BeaconChainTypes> Worker<T> {
793793 | Err ( e @ BlockError :: BlockIsAlreadyKnown )
794794 | Err ( e @ BlockError :: RepeatProposal { .. } )
795795 | Err ( e @ BlockError :: NotFinalizedDescendant { .. } ) => {
796- debug ! ( self . log, "Could not verify block for gossip, ignoring the block" ;
796+ debug ! ( self . log, "Could not verify block for gossip. Ignoring the block" ;
797797 "error" => %e) ;
798798 // Prevent recurring behaviour by penalizing the peer slightly.
799799 self . gossip_penalize_peer (
@@ -805,7 +805,7 @@ impl<T: BeaconChainTypes> Worker<T> {
805805 return None ;
806806 }
807807 Err ( ref e @ BlockError :: ExecutionPayloadError ( ref epe) ) if !epe. penalize_peer ( ) => {
808- debug ! ( self . log, "Could not verify block for gossip, ignoring the block" ;
808+ debug ! ( self . log, "Could not verify block for gossip. Ignoring the block" ;
809809 "error" => %e) ;
810810 self . propagate_validation_result ( message_id, peer_id, MessageAcceptance :: Ignore ) ;
811811 return None ;
@@ -827,7 +827,7 @@ impl<T: BeaconChainTypes> Worker<T> {
827827 // TODO(merge): reconsider peer scoring for this event.
828828 | Err ( e @ BlockError :: ParentExecutionPayloadInvalid { .. } )
829829 | Err ( e @ BlockError :: GenesisBlock ) => {
830- warn ! ( self . log, "Could not verify block for gossip, rejecting the block" ;
830+ warn ! ( self . log, "Could not verify block for gossip. Rejecting the block" ;
831831 "error" => %e) ;
832832 self . propagate_validation_result ( message_id, peer_id, MessageAcceptance :: Reject ) ;
833833 self . gossip_penalize_peer (
0 commit comments