mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-31 23:41:22 +00:00
d5ddd012bc
* Enforce error handling and checking type assertions * Reference issue #5404 in the TODO message * doc description * Merge branch 'master' into errcheck * fix tests and address @nisdas feedbacK * gaz * fix docker image
55 lines
1.8 KiB
Go
55 lines
1.8 KiB
Go
package precompute
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/helpers"
|
|
stateTrie "github.com/prysmaticlabs/prysm/beacon-chain/state"
|
|
"github.com/prysmaticlabs/prysm/shared/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, state *stateTrie.BeaconState) ([]*Validator, *Balance, error) {
|
|
ctx, span := trace.StartSpan(ctx, "precomputeEpoch.New")
|
|
defer span.End()
|
|
vp := make([]*Validator, state.NumValidators())
|
|
bp := &Balance{}
|
|
|
|
currentEpoch := helpers.CurrentEpoch(state)
|
|
prevEpoch := helpers.PrevEpoch(state)
|
|
|
|
if err := state.ReadFromEveryValidator(func(idx int, val *stateTrie.ReadOnlyValidator) error {
|
|
// Was validator withdrawable or slashed
|
|
withdrawable := currentEpoch >= val.WithdrawableEpoch()
|
|
p := &Validator{
|
|
IsSlashed: val.Slashed(),
|
|
IsWithdrawableCurrentEpoch: withdrawable,
|
|
CurrentEpochEffectiveBalance: val.EffectiveBalance(),
|
|
}
|
|
// Was validator active current epoch
|
|
if helpers.IsActiveValidatorUsingTrie(val, currentEpoch) {
|
|
p.IsActiveCurrentEpoch = true
|
|
bp.CurrentEpoch += val.EffectiveBalance()
|
|
}
|
|
// Was validator active previous epoch
|
|
if helpers.IsActiveValidatorUsingTrie(val, prevEpoch) {
|
|
p.IsActivePrevEpoch = true
|
|
bp.PrevEpoch += val.EffectiveBalance()
|
|
}
|
|
// Set inclusion slot and inclusion distance to be max, they will be compared and replaced
|
|
// with the lower values
|
|
p.InclusionSlot = params.BeaconConfig().FarFutureEpoch
|
|
p.InclusionDistance = params.BeaconConfig().FarFutureEpoch
|
|
|
|
vp[idx] = p
|
|
return nil
|
|
}); err != nil {
|
|
return nil, nil, errors.Wrap(err, "failed to initialize precompute")
|
|
}
|
|
return vp, bp, nil
|
|
}
|