Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
Giulio2002 committed Nov 21, 2024
1 parent a8ed30d commit 1fd08ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cl/phase1/network/gossip_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ func (g *GossipManager) routeAndProcess(ctx context.Context, data *sentinel.Goss
if err := obj.Attestation.DecodeSSZ(common.CopyBytes(data.Data), int(version)); err != nil {
return err
}
if g.committeeSub.NeedToAggregate(obj.Attestation) || g.attestationsLimiter.tryAcquire() {
if g.committeeSub.NeedToAggregate(obj.Attestation) /*|| g.attestationsLimiter.tryAcquire()*/ {
return g.attestationService.ProcessMessage(ctx, data.SubnetId, obj)
}
return services.ErrIgnore
Expand Down

0 comments on commit 1fd08ed

Please sign in to comment.