mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
d077483577
* v3 import renamings * tidy * fmt * rev * Update beacon-chain/core/epoch/precompute/reward_penalty_test.go * Update beacon-chain/core/helpers/validators_test.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/iface/BUILD.bazel * Update beacon-chain/db/kv/kv.go * Update beacon-chain/db/kv/state.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/sync/initial-sync/service.go * fix deps * fix bad replacements * fix bad replacements * change back * gohashtree version * fix deps Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
60 lines
2.1 KiB
Go
60 lines
2.1 KiB
Go
// Package precompute provides gathering of nicely-structured
|
|
// data important to feed into epoch processing, such as attesting
|
|
// records and balances, for faster computation.
|
|
package precompute
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/v3/beacon-chain/core/helpers"
|
|
"github.com/prysmaticlabs/prysm/v3/beacon-chain/core/time"
|
|
"github.com/prysmaticlabs/prysm/v3/beacon-chain/state"
|
|
"github.com/prysmaticlabs/prysm/v3/config/params"
|
|
"go.opencensus.io/trace"
|
|
)
|
|
|
|
// New gets called at the beginning of process epoch cycle to return
|
|
// pre computed instances of validators attesting records and total
|
|
// balances attested in an epoch.
|
|
func New(ctx context.Context, s state.BeaconState) ([]*Validator, *Balance, error) {
|
|
ctx, span := trace.StartSpan(ctx, "precomputeEpoch.New")
|
|
defer span.End()
|
|
|
|
pValidators := make([]*Validator, s.NumValidators())
|
|
pBal := &Balance{}
|
|
|
|
currentEpoch := time.CurrentEpoch(s)
|
|
prevEpoch := time.PrevEpoch(s)
|
|
|
|
if err := s.ReadFromEveryValidator(func(idx int, val state.ReadOnlyValidator) error {
|
|
// Was validator withdrawable or slashed
|
|
withdrawable := prevEpoch+1 >= val.WithdrawableEpoch()
|
|
pVal := &Validator{
|
|
IsSlashed: val.Slashed(),
|
|
IsWithdrawableCurrentEpoch: withdrawable,
|
|
CurrentEpochEffectiveBalance: val.EffectiveBalance(),
|
|
}
|
|
// Was validator active current epoch
|
|
if helpers.IsActiveValidatorUsingTrie(val, currentEpoch) {
|
|
pVal.IsActiveCurrentEpoch = true
|
|
pBal.ActiveCurrentEpoch += val.EffectiveBalance()
|
|
}
|
|
// Was validator active previous epoch
|
|
if helpers.IsActiveValidatorUsingTrie(val, prevEpoch) {
|
|
pVal.IsActivePrevEpoch = true
|
|
pBal.ActivePrevEpoch += val.EffectiveBalance()
|
|
}
|
|
// Set inclusion slot and inclusion distance to be max, they will be compared and replaced
|
|
// with the lower values
|
|
pVal.InclusionSlot = params.BeaconConfig().FarFutureSlot
|
|
pVal.InclusionDistance = params.BeaconConfig().FarFutureSlot
|
|
|
|
pValidators[idx] = pVal
|
|
return nil
|
|
}); err != nil {
|
|
return nil, nil, errors.Wrap(err, "failed to initialize precompute")
|
|
}
|
|
return pValidators, pBal, nil
|
|
}
|