mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
f3d6dbcc1e
* config params into pkg * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
64 lines
1.9 KiB
Go
64 lines
1.9 KiB
Go
package evaluators
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core"
|
|
"github.com/prysmaticlabs/prysm/config/params"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
wrapperv2 "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1/wrapper"
|
|
"github.com/prysmaticlabs/prysm/testing/endtoend/policies"
|
|
"github.com/prysmaticlabs/prysm/testing/endtoend/types"
|
|
"google.golang.org/grpc"
|
|
)
|
|
|
|
// ForkTransition ensures that the hard fork has occurred successfully.
|
|
var ForkTransition = types.Evaluator{
|
|
Name: "fork_transition_%d",
|
|
Policy: policies.OnEpoch(params.AltairE2EForkEpoch),
|
|
Evaluation: forkOccurs,
|
|
}
|
|
|
|
func forkOccurs(conns ...*grpc.ClientConn) error {
|
|
conn := conns[0]
|
|
client := ethpb.NewBeaconNodeValidatorClient(conn)
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
stream, err := client.StreamBlocksAltair(ctx, ðpb.StreamBlocksRequest{VerifiedOnly: true})
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to get stream")
|
|
}
|
|
fSlot, err := core.StartSlot(params.AltairE2EForkEpoch)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if ctx.Err() == context.Canceled {
|
|
return errors.New("context canceled prematurely")
|
|
}
|
|
res, err := stream.Recv()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if res == nil || res.Block == nil {
|
|
return errors.New("nil block returned by beacon node")
|
|
}
|
|
if res.GetPhase0Block() == nil && res.GetAltairBlock() == nil {
|
|
return errors.New("nil block returned by beacon node")
|
|
}
|
|
if res.GetPhase0Block() != nil {
|
|
return errors.New("phase 0 block returned after altair fork has occurred")
|
|
}
|
|
blk, err := wrapperv2.WrappedAltairSignedBeaconBlock(res.GetAltairBlock())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if blk == nil || blk.IsNil() {
|
|
return errors.New("nil altair block received from stream")
|
|
}
|
|
if blk.Block().Slot() < fSlot {
|
|
return errors.Errorf("wanted a block >= %d but received %d", fSlot, blk.Block().Slot())
|
|
}
|
|
return nil
|
|
}
|