crypto/kzg4844: fix rebase

This commit is contained in:
MariusVanDerWijden 2025-04-29 16:12:54 +02:00
parent d65e54cabd
commit 0fc4112947

View file

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