Files
prysm/testing/spectest/mainnet/phase0/forkchoice/forkchoice_test.go
Potuz 77fc45304b Remove protoarray forkchoice (#11455)
* Remove protoarray forkchoice

* exported errors

* fix spectests

* fix tests

* conflict 1

* Preston's review

Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
2022-09-26 14:45:21 +00:00

19 lines
462 B
Go

package forkchoice
import (
"testing"
"github.com/prysmaticlabs/prysm/v3/config/features"
"github.com/prysmaticlabs/prysm/v3/runtime/version"
"github.com/prysmaticlabs/prysm/v3/testing/spectest/shared/common/forkchoice"
)
func TestMainnet_Altair_Forkchoice(t *testing.T) {
resetCfg := features.InitWithReset(&features.Flags{
EnableDefensivePull: false,
DisablePullTips: true,
})
defer resetCfg()
forkchoice.Run(t, "mainnet", version.Phase0)
}