mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5433502055
Co-authored-by: Terence Tsao <terence@prysmaticlabs.com> Co-authored-by: Kasey Kirkham <kasey@users.noreply.github.com>
18 lines
475 B
Go
18 lines
475 B
Go
package params
|
|
|
|
// InteropConfig provides a generic config suitable for interop testing.
|
|
func InteropConfig() *BeaconChainConfig {
|
|
c := MainnetConfig().Copy()
|
|
|
|
// Prysm constants.
|
|
c.ConfigName = InteropName
|
|
c.GenesisForkVersion = []byte{0, 0, 0, 235}
|
|
c.AltairForkVersion = []byte{1, 0, 0, 235}
|
|
c.BellatrixForkVersion = []byte{2, 0, 0, 235}
|
|
c.CapellaForkVersion = []byte{3, 0, 0, 235}
|
|
c.DenebForkVersion = []byte{4, 0, 0, 235}
|
|
|
|
c.InitializeForkSchedule()
|
|
return c
|
|
}
|