Skip to content

Commit

Permalink
continue when there is an error when getting atts
Browse files Browse the repository at this point in the history
  • Loading branch information
rkapka committed Feb 28, 2025
1 parent e16de08 commit 59e4f8e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions beacon-chain/operations/attestations/kv/unaggregated.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ func (c *AttCaches) UnaggregatedAttestations() ([]ethpb.Att, error) {
seen, err := c.hasSeenBit(att)
if err != nil {
log.WithError(err).Debug("Could not check if attestations bits have been seen")
continue
}
if !seen {
atts = append(atts, att.Clone())
Expand Down

0 comments on commit 59e4f8e

Please sign in to comment.