Skip to content

Commit

Permalink
fix: L1 blobs fetcher interface implementation assertion (#12403)
Browse files Browse the repository at this point in the history
  • Loading branch information
threewebcode authored Oct 11, 2024
1 parent 1222534 commit 1f91054
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion op-program/client/l1/blob_fetcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type BlobFetcher struct {
oracle Oracle
}

var _ = (*derive.L1BlobsFetcher)(nil)
var _ derive.L1BlobsFetcher = (*BlobFetcher)(nil)

func NewBlobFetcher(logger log.Logger, oracle Oracle) *BlobFetcher {
return &BlobFetcher{
Expand Down

0 comments on commit 1f91054

Please sign in to comment.