Initial support for deneb.

This commit is contained in:
Jim McDonald
2023-04-29 12:20:29 +01:00
parent d174219ddc
commit a7631a6a7f
14 changed files with 319 additions and 60 deletions

View File

@@ -269,7 +269,7 @@ func ObtainChainInfoFromNode(ctx context.Context,
}
tmp, exists := spec["GENESIS_FORK_VERSION"]
if !exists {
return nil, errors.New("capella fork version not known by chain")
return nil, errors.New("genesis fork version not known by chain")
}
var isForkVersion bool
res.GenesisForkVersion, isForkVersion = tmp.(phase0.Version)