erigon-pulse/cl/utils/merkle.go
Giulio rebuffo 57bcbaa21f
Adds flags to enable/disable backfilling and enable full historical beacon node (#8813)
* Correct naming of hash func in Eth2
* Customizable mode of operation for Caplin
2023-11-22 13:24:35 +01:00

27 lines
688 B
Go

package utils
import (
libcommon "github.com/ledgerwatch/erigon-lib/common"
)
// Check if leaf at index verifies against the Merkle root and branch
func IsValidMerkleBranch(leaf libcommon.Hash, branch []libcommon.Hash, depth uint64, index uint64, root [32]byte) bool {
value := leaf
for i := uint64(0); i < depth; i++ {
if (index / PowerOf2(i) % 2) == 1 {
value = Sha256(append(branch[i][:], value[:]...))
} else {
value = Sha256(append(value[:], branch[i][:]...))
}
}
return value == root
}
func PreparateRootsForHashing(roots []libcommon.Hash) [][32]byte {
ret := make([][32]byte, len(roots))
for i := range roots {
copy(ret[i][:], roots[i][:])
}
return ret
}