Skip to content

Commit

Permalink
fix: Allow missing deposit snapshopts (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
samcm committed Apr 3, 2024
1 parent c5b13c8 commit f4631b7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/beacon/download.go
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,8 @@ func (d *Default) fetchBundle(ctx context.Context, root phase0.Root, upstream *N

// Download and store deposit snapshots
if err = d.downloadAndStoreDepositSnapshot(ctx, epoch, upstream); err != nil {
return nil, fmt.Errorf("failed to download and store deposit snapshot: %w", err)
d.log.WithError(err).
Warn("failed to download and store deposit snapshot")
}
}

Expand Down

0 comments on commit f4631b7

Please sign in to comment.