Skip to content

Commit

Permalink
fix(taiko-client): use proposed at, not timestamp when fetching blob (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey authored Sep 10, 2024
1 parent d0554a2 commit 32d95c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/taiko-client/driver/txlist_fetcher/blob.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ func (d *BlobFetcher) Fetch(
}

// Fetch the L1 block sidecars.
sidecars, err := d.dataSource.GetBlobs(ctx, meta.GetTimestamp(), meta.GetBlobHash())
sidecars, err := d.dataSource.GetBlobs(ctx, meta.GetProposedAt(), meta.GetBlobHash())
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 32d95c1

Please sign in to comment.