mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
a069738c20
* update shared/params * update eth2-types deps * update protobufs * update shared/* * fix testutil/state * update beacon-chain/state * update beacon-chain/db * update tests * fix test * update beacon-chain/core * update beacon-chain/blockchain * update beacon-chain/cache * beacon-chain/forkchoice * update beacon-chain/operations * update beacon-chain/p2p * update beacon-chain/rpc * update sync/initial-sync * update deps * update deps * go fmt * update beacon-chain/sync * update endtoend/ * bazel build //beacon-chain - works w/o issues * update slasher code * udpate tools/ * update validator/ * update fastssz * fix build * fix test building * update tests * update ethereumapis deps * fix tests * update state/stategen * fix build * fix test * add FarFutureSlot * go imports * Radek's suggestions * Ivan's suggestions * type conversions * Nishant's suggestions * add more tests to rpc_send_request * fix test * clean up * fix conflicts Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: nisdas <nishdas93@gmail.com>
58 lines
2.1 KiB
Go
58 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/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()
|
|
pValidators := make([]*Validator, state.NumValidators())
|
|
pBal := &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 := 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
|
|
}
|