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
d65e54cabd
commit
0fc4112947
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue