mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
77 lines
1.9 KiB
Go
77 lines
1.9 KiB
Go
package blockchain
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/v3/beacon-chain/state"
|
|
"github.com/prysmaticlabs/prysm/v3/consensus-types/interfaces"
|
|
)
|
|
|
|
func (s *Service) isNewProposer() bool {
|
|
_, _, ok := s.cfg.ProposerSlotIndexCache.GetProposerPayloadIDs(s.CurrentSlot()+1, [32]byte{} /* root */)
|
|
return ok
|
|
}
|
|
|
|
func (s *Service) isNewHead(r [32]byte) bool {
|
|
s.headLock.RLock()
|
|
defer s.headLock.RUnlock()
|
|
|
|
currentHeadRoot := s.originBlockRoot
|
|
if s.head != nil {
|
|
currentHeadRoot = s.headRoot()
|
|
}
|
|
|
|
return r != currentHeadRoot || r == [32]byte{}
|
|
}
|
|
|
|
func (s *Service) getStateAndBlock(ctx context.Context, r [32]byte) (state.BeaconState, interfaces.ReadOnlySignedBeaconBlock, error) {
|
|
if !s.hasBlockInInitSyncOrDB(ctx, r) {
|
|
return nil, nil, errors.New("block does not exist")
|
|
}
|
|
newHeadBlock, err := s.getBlock(ctx, r)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
headState, err := s.cfg.StateGen.StateByRoot(ctx, r)
|
|
if err != nil {
|
|
return nil, nil, err
|
|
}
|
|
return headState, newHeadBlock, nil
|
|
}
|
|
|
|
func (s *Service) forkchoiceUpdateWithExecution(ctx context.Context, newHeadRoot [32]byte) error {
|
|
isNewHead := s.isNewHead(newHeadRoot)
|
|
if !isNewHead && !s.isNewProposer() {
|
|
return nil
|
|
}
|
|
|
|
headState, headBlock, err := s.getStateAndBlock(ctx, newHeadRoot)
|
|
if err != nil {
|
|
log.WithError(err).Error("Could not get forkchoice update argument")
|
|
return nil
|
|
}
|
|
|
|
_, err = s.notifyForkchoiceUpdate(ctx, ¬ifyForkchoiceUpdateArg{
|
|
headState: headState,
|
|
headRoot: newHeadRoot,
|
|
headBlock: headBlock.Block(),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if isNewHead {
|
|
if err := s.saveHead(ctx, newHeadRoot, headBlock, headState); err != nil {
|
|
log.WithError(err).Error("could not save head")
|
|
}
|
|
|
|
// Only need to prune attestations from pool if the head has changed.
|
|
if err := s.pruneAttsFromPool(headBlock); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|