Skip to content

Commit 30e1961

Browse files
committed
fix lint
1 parent 94fbdae commit 30e1961

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tx-submitter/types/blob.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func BlobHashes(blobs []kzg4844.Blob, commitments []kzg4844.Commitment) []common
2020

2121
func MakeBlobProof(blobs []kzg4844.Blob, commitment []kzg4844.Commitment) ([]kzg4844.Proof, error) {
2222
proofs := make([]kzg4844.Proof, len(blobs))
23-
for i, _ := range blobs {
23+
for i := range blobs {
2424
proof, err := kzg4844.ComputeBlobProof(&blobs[i], commitment[i])
2525
if err != nil {
2626
return nil, err

0 commit comments

Comments
 (0)