mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 09:14:28 +00:00
17 lines
433 B
Go
17 lines
433 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.ShardingForkVersion = []byte{3, 0, 0, 235}
|
||
|
|
||
|
c.InitializeForkSchedule()
|
||
|
return c
|
||
|
}
|