mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-02-26 15:47:21 +00:00
YAML supports leaving out the value, so we should handle this condition in our limited parser.
37 lines
774 B
Go
37 lines
774 B
Go
package params
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
)
|
|
|
|
func TestChainConfig_LoadForks(t *testing.T) {
|
|
const config = `
|
|
GENESIS_FORK_VERSION: 0x00000000
|
|
|
|
ALTAIR_FORK_VERSION: 0x00000001
|
|
ALTAIR_FORK_EPOCH: 1
|
|
|
|
EIP7928_FORK_VERSION: 0xb0000038
|
|
EIP7928_FORK_EPOCH: 18446744073709551615
|
|
|
|
EIP7XXX_FORK_VERSION:
|
|
EIP7XXX_FORK_EPOCH:
|
|
|
|
BLOB_SCHEDULE: []
|
|
`
|
|
c := &ChainConfig{}
|
|
err := c.LoadForks([]byte(config))
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
for _, fork := range c.Forks {
|
|
if fork.Name == "GENESIS" && (fork.Epoch != 0) {
|
|
t.Errorf("unexpected genesis fork epoch %d", fork.Epoch)
|
|
}
|
|
if fork.Name == "ALTAIR" && (fork.Epoch != 1 || !bytes.Equal(fork.Version, []byte{0, 0, 0, 1})) {
|
|
t.Errorf("unexpected altair fork epoch %d version %x", fork.Epoch, fork.Version)
|
|
}
|
|
}
|
|
}
|