Skip to content

Commit

Permalink
make l1.beacon-archiver work
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiqiangxu authored and geoknee committed May 13, 2024
1 parent e87e5ef commit 6953354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op-service/sources/l1_beacon_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ func (cl *L1BeaconClient) fetchSidecars(ctx context.Context, slot uint64, hashes
for i := 0; i < cl.pool.Len(); i++ {
f := cl.pool.Get()
resp, err := f.BeaconBlobSideCars(ctx, cl.cfg.FetchAllSidecars, slot, hashes)
if err != nil {
if err != nil || len(resp.Data) != len(hashes) {
cl.pool.MoveToNext()
errs = append(errs, err)
} else {
Expand Down

0 comments on commit 6953354

Please sign in to comment.