Skip to content

Commit 479997f

Browse files
crypto/kzg4844: fix rebase
1 parent 80e92e5 commit 479997f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crypto/kzg4844/kzg4844.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ func IsValidVersionedHash(h []byte) bool {
186186

187187
func ComputeCells(blob *Blob) ([]Proof, error) {
188188
if useCKZG.Load() {
189-
return ckzgComputeCells(blob)
189+
return ckzgComputeCellProofs(blob)
190190
}
191-
return gokzgComputeCells(blob)
191+
return gokzgComputeCellProofs(blob)
192192
}

0 commit comments

Comments
 (0)