mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
crypto/kzg4844: fix rebase
This commit is contained in:
parent
80e92e556f
commit
479997f1ec
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue