mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-10 13:58:09 -05:00
19 lines
348 B
Go
19 lines
348 B
Go
package mainnet
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/OffchainLabs/prysm/v7/config/params"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
prevConfig := params.BeaconConfig().Copy()
|
|
defer params.OverrideBeaconConfig(prevConfig)
|
|
c := params.BeaconConfig().Copy()
|
|
c.MinGenesisActiveValidatorCount = 16384
|
|
params.OverrideBeaconConfig(c)
|
|
|
|
os.Exit(m.Run())
|
|
}
|