crypto/kzg4844: fix rebase

This commit is contained in:
MariusVanDerWijden 2025-04-29 16:12:54 +02:00
parent 80e92e556f
commit 479997f1ec

View file

@ -186,7 +186,7 @@ func IsValidVersionedHash(h []byte) bool {
func ComputeCells(blob *Blob) ([]Proof, error) {
if useCKZG.Load() {
return ckzgComputeCells(blob)
return ckzgComputeCellProofs(blob)
}
return gokzgComputeCells(blob)
return gokzgComputeCellProofs(blob)
}