Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey committed Mar 14, 2024
1 parent eec102d commit 38db5bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/blobstorage/indexer/indexer.go
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ func (i *Indexer) filter(ctx context.Context) error {
Context: i.ctx,
}

group, groupCtx := errgroup.WithContext(i.ctx)
group, _ := errgroup.WithContext(i.ctx)

events, err := i.taikoL1.FilterBlockProposed(opts, nil, nil)
if err != nil {
Expand All @@ -219,7 +219,7 @@ func (i *Indexer) filter(ctx context.Context) error {
}

group.Go(func() error {
if err := i.withRetry(func() error { return i.filter(groupCtx) }); err != nil {
if err := i.withRetry(func() error { return i.storeBlob(ctx, event) }); err != nil {
return err
}

Expand Down

0 comments on commit 38db5bc

Please sign in to comment.