mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
5735379963
* employ a val reader to prevent constant copies * clean it up and fix tests * gaz * radek's review --------- Co-authored-by: Radosław Kapka <rkapka@wp.pl>
52 lines
1.7 KiB
Go
52 lines
1.7 KiB
Go
package stateutil
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/v5/config/params"
|
|
"github.com/prysmaticlabs/prysm/v5/consensus-types/primitives"
|
|
"github.com/prysmaticlabs/prysm/v5/math"
|
|
)
|
|
|
|
// UnrealizedCheckpointBalances returns the total current active balance, the
|
|
// total previous epoch correctly attested for target balance, and the total
|
|
// current epoch correctly attested for target balance. It takes the current and
|
|
// previous epoch participation bits as parameters so implicitly only works for
|
|
// beacon states post-Altair.
|
|
func UnrealizedCheckpointBalances(cp, pp []byte, validators ValReader, currentEpoch primitives.Epoch) (uint64, uint64, uint64, error) {
|
|
targetIdx := params.BeaconConfig().TimelyTargetFlagIndex
|
|
activeBalance := uint64(0)
|
|
currentTarget := uint64(0)
|
|
prevTarget := uint64(0)
|
|
if len(cp) < validators.Len() || len(pp) < validators.Len() {
|
|
return 0, 0, 0, errors.New("participation does not match validator set")
|
|
}
|
|
|
|
valLength := validators.Len()
|
|
for i := 0; i < valLength; i++ {
|
|
v, err := validators.At(i)
|
|
if err != nil {
|
|
return 0, 0, 0, err
|
|
}
|
|
active := v.ActivationEpoch <= currentEpoch && currentEpoch < v.ExitEpoch
|
|
if active && !v.Slashed {
|
|
activeBalance, err = math.Add64(activeBalance, v.EffectiveBalance)
|
|
if err != nil {
|
|
return 0, 0, 0, err
|
|
}
|
|
if ((cp[i] >> targetIdx) & 1) == 1 {
|
|
currentTarget, err = math.Add64(currentTarget, v.EffectiveBalance)
|
|
if err != nil {
|
|
return 0, 0, 0, err
|
|
}
|
|
}
|
|
if ((pp[i] >> targetIdx) & 1) == 1 {
|
|
prevTarget, err = math.Add64(prevTarget, v.EffectiveBalance)
|
|
if err != nil {
|
|
return 0, 0, 0, err
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return activeBalance, prevTarget, currentTarget, nil
|
|
}
|