mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
* 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>
19 lines
462 B
Go
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 TestMinimal_Altair_Forkchoice(t *testing.T) {
|
|
resetCfg := features.InitWithReset(&features.Flags{
|
|
EnableDefensivePull: false,
|
|
DisablePullTips: true,
|
|
})
|
|
defer resetCfg()
|
|
forkchoice.Run(t, "minimal", version.Phase0)
|
|
}
|