mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-31 16:21:21 +00:00
4e53a12c53
Preparation for Shangai Beacon Blocks/Beacon State
19 lines
517 B
Go
19 lines
517 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 = Keccak256(append(branch[i][:], value[:]...))
|
|
} else {
|
|
value = Keccak256(append(value[:], branch[i][:]...))
|
|
}
|
|
}
|
|
return value == root
|
|
}
|