Skip to content

Commit

Permalink
chore: Update large blob test to use 16mb - fix cache retrieval bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ethenotethan committed Aug 29, 2024
1 parent 95d2b14 commit 8df6258
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ func (r *Router) multiSourceRead(ctx context.Context, commitment []byte, fallbac
continue
}
// verify cert:data using EigenDA verification checks
err = r.eigenda.Verify(key, data)
err = r.eigenda.Verify(commitment, data)
if err != nil {
log.Warn("Failed to verify blob", "err", err, "backend", src.BackendType())
continue
Expand Down

0 comments on commit 8df6258

Please sign in to comment.