We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94fbdae commit 30e1961Copy full SHA for 30e1961
tx-submitter/types/blob.go
@@ -20,7 +20,7 @@ func BlobHashes(blobs []kzg4844.Blob, commitments []kzg4844.Commitment) []common
20
21
func MakeBlobProof(blobs []kzg4844.Blob, commitment []kzg4844.Commitment) ([]kzg4844.Proof, error) {
22
proofs := make([]kzg4844.Proof, len(blobs))
23
- for i, _ := range blobs {
+ for i := range blobs {
24
proof, err := kzg4844.ComputeBlobProof(&blobs[i], commitment[i])
25
if err != nil {
26
return nil, err
0 commit comments