eth-testing/chaindata/small2/chain.go

27 lines
513 B
Go
Raw Normal View History

package small2
import (
2023-09-24 06:42:53 +00:00
"github.com/cerc-io/eth-testing/chaindata"
2023-09-24 06:59:14 +00:00
"github.com/cerc-io/eth-testing/utils"
)
var (
2023-09-24 06:42:53 +00:00
ChainData, err = chaindata.GetFixture("small2")
2023-09-24 06:59:14 +00:00
// keybytes-encoded leaf keys of all state nodes
Block1_StateNodeLeafKeys [][]byte
)
2023-09-24 06:42:53 +00:00
func init() {
if err != nil {
panic(err)
}
2023-09-24 06:59:14 +00:00
for _, path := range Block1_StateNodePaths {
if len(path) > 0 && path[len(path)-1] == 16 {
hash := utils.HexToKeyBytes(path)
Block1_StateNodeLeafKeys = append(Block1_StateNodeLeafKeys, hash)
}
}
2023-09-24 06:42:53 +00:00
}