mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
44973b0bb3
* in progress... * in progress... * remove log * log root * Revert "Auxiliary commit to revert individual files from f12a609ea2a2f1e87e97321f3a717cd324b5ae97" This reverts commit 5ae35edb6477d8d0ea4e94b273efc6590484da85. * cleanup * remove log * remove whitespace * remove logs * more stuff * copy * always rebuild trie * revert * add state * init state * fix all * uintptr * move slice to new package * lock in `Detach` * remove constraint * reorder * blockroots and stateroots * fill roots in empty() * fix hasher * implement slice for balances and inactivity scores * detach in setters * Revert "implement slice for balances and inactivity scores" This reverts commit 59eb9df8d766cb1c44a7eb5b3f5e3c042249943d. # Conflicts: # beacon-chain/state/state-native/setters_validator.go * use counter to track states * typos * rename interface * balances * gauge * some improvements * first try with map * fix * inactivity scores in progress * fix test # Conflicts: # beacon-chain/state/state-native/helpers_test.go * test fixes * ToProto fix * copy roots * validators * build fixes * fix bug in `ToProto` * fix fuzz test * fix bug in slice getters * fix state equality checks * make tests pass * make tests pass * more test updates * Revert "Auxiliary commit to revert individual files from 34e7344bff08a589e6341bb1829e3cb74159e878" This reverts commit ecd64efa8917f37ca41460e0356ff007fe55dd9d. * Revert "make tests pass" This reverts commit 0cf00f19eecf4678cd2b866dd107f3179d0426ef. * Revert "make tests pass" This reverts commit 521b65e1d2e13be3d720f333008b6838a8e78878. * pass tests * deepequal identifiable types * Deflake `cloners_test.go` * feature flag for block roots * feature flag * remove recursive locks * reduce complexity of rootSelector * fix randao mixes root * some fixes * revisit tests * revert change to field trie helpers * initialize field map for tests * remove whitespace * initialize roots with proper length * more fixes * out of bounds message fix * optimize length calculation * remove call to Len in PubkeyAtIndex * don't log deposits * unit tests * unit tests * fix * comments * test fixes * id * remove Enumerator interface * review feedback * simplify field trie * bring back fieldtrie package * fix bazel file * use handle32ByteArrays for root computation * fix locks * metrics * bzl * simplify some things * use htr in state test * remove code from require package * gzl * more htr * Fuzzing of the multi-value slice * assert values * getter optimizations * use At when reading from validators * Nishant's review * restore safe copy * remove empty line * build fix * restore how we get root at index for deafult mode * more review comments * optimize default behavior * simplify Slice calls * test fix * remove unnecessary package * remove unused setter * make fieldMap unexported * some improvements in state package * call `Slice` instead of manually copying * unlock in ReadFromEveryValidator * Potuz's comments * lock the state when reading from all validators # Conflicts: # beacon-chain/state/state-native/getters_validator.go * add back preston's changes * add index --------- Co-authored-by: Potuz <potuz@prysmaticlabs.com> Co-authored-by: nisdas <nishdas93@gmail.com> Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
127 lines
4.6 KiB
Go
127 lines
4.6 KiB
Go
package state_native
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/v4/config/params"
|
|
"github.com/prysmaticlabs/prysm/v4/consensus-types/primitives"
|
|
"github.com/prysmaticlabs/prysm/v4/encoding/bytesutil"
|
|
mathutil "github.com/prysmaticlabs/prysm/v4/math"
|
|
enginev1 "github.com/prysmaticlabs/prysm/v4/proto/engine/v1"
|
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v4/runtime/version"
|
|
"github.com/prysmaticlabs/prysm/v4/time/slots"
|
|
)
|
|
|
|
const ETH1AddressOffset = 12
|
|
|
|
// NextWithdrawalIndex returns the index that will be assigned to the next withdrawal.
|
|
func (b *BeaconState) NextWithdrawalIndex() (uint64, error) {
|
|
if b.version < version.Capella {
|
|
return 0, errNotSupported("NextWithdrawalIndex", b.version)
|
|
}
|
|
|
|
b.lock.RLock()
|
|
defer b.lock.RUnlock()
|
|
|
|
return b.nextWithdrawalIndex, nil
|
|
}
|
|
|
|
// NextWithdrawalValidatorIndex returns the index of the validator which is
|
|
// next in line for a withdrawal.
|
|
func (b *BeaconState) NextWithdrawalValidatorIndex() (primitives.ValidatorIndex, error) {
|
|
if b.version < version.Capella {
|
|
return 0, errNotSupported("NextWithdrawalValidatorIndex", b.version)
|
|
}
|
|
|
|
b.lock.RLock()
|
|
defer b.lock.RUnlock()
|
|
|
|
return b.nextWithdrawalValidatorIndex, nil
|
|
}
|
|
|
|
// ExpectedWithdrawals returns the withdrawals that a proposer will need to pack in the next block
|
|
// applied to the current state. It is also used by validators to check that the execution payload carried
|
|
// the right number of withdrawals
|
|
func (b *BeaconState) ExpectedWithdrawals() ([]*enginev1.Withdrawal, error) {
|
|
if b.version < version.Capella {
|
|
return nil, errNotSupported("ExpectedWithdrawals", b.version)
|
|
}
|
|
|
|
b.lock.RLock()
|
|
defer b.lock.RUnlock()
|
|
|
|
withdrawals := make([]*enginev1.Withdrawal, 0, params.BeaconConfig().MaxWithdrawalsPerPayload)
|
|
validatorIndex := b.nextWithdrawalValidatorIndex
|
|
withdrawalIndex := b.nextWithdrawalIndex
|
|
epoch := slots.ToEpoch(b.slot)
|
|
|
|
validatorsLen := b.validatorsLen()
|
|
bound := mathutil.Min(uint64(validatorsLen), params.BeaconConfig().MaxValidatorsPerWithdrawalsSweep)
|
|
for i := uint64(0); i < bound; i++ {
|
|
val, err := b.validatorAtIndex(validatorIndex)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "could not retrieve validator at index %d", validatorIndex)
|
|
}
|
|
balance, err := b.balanceAtIndex(validatorIndex)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "could not retrieve balance at index %d", validatorIndex)
|
|
}
|
|
if balance > 0 && isFullyWithdrawableValidator(val, epoch) {
|
|
withdrawals = append(withdrawals, &enginev1.Withdrawal{
|
|
Index: withdrawalIndex,
|
|
ValidatorIndex: validatorIndex,
|
|
Address: bytesutil.SafeCopyBytes(val.WithdrawalCredentials[ETH1AddressOffset:]),
|
|
Amount: balance,
|
|
})
|
|
withdrawalIndex++
|
|
} else if isPartiallyWithdrawableValidator(val, balance) {
|
|
withdrawals = append(withdrawals, &enginev1.Withdrawal{
|
|
Index: withdrawalIndex,
|
|
ValidatorIndex: validatorIndex,
|
|
Address: bytesutil.SafeCopyBytes(val.WithdrawalCredentials[ETH1AddressOffset:]),
|
|
Amount: balance - params.BeaconConfig().MaxEffectiveBalance,
|
|
})
|
|
withdrawalIndex++
|
|
}
|
|
if uint64(len(withdrawals)) == params.BeaconConfig().MaxWithdrawalsPerPayload {
|
|
break
|
|
}
|
|
validatorIndex += 1
|
|
if uint64(validatorIndex) == uint64(validatorsLen) {
|
|
validatorIndex = 0
|
|
}
|
|
}
|
|
return withdrawals, nil
|
|
}
|
|
|
|
// hasETH1WithdrawalCredential returns whether the validator has an ETH1
|
|
// Withdrawal prefix. It assumes that the caller has a lock on the state
|
|
func hasETH1WithdrawalCredential(val *ethpb.Validator) bool {
|
|
if val == nil {
|
|
return false
|
|
}
|
|
cred := val.WithdrawalCredentials
|
|
return len(cred) > 0 && cred[0] == params.BeaconConfig().ETH1AddressWithdrawalPrefixByte
|
|
}
|
|
|
|
// isFullyWithdrawableValidator returns whether the validator is able to perform a full
|
|
// withdrawal. This differ from the spec helper in that the balance > 0 is not
|
|
// checked. This function assumes that the caller holds a lock on the state
|
|
func isFullyWithdrawableValidator(val *ethpb.Validator, epoch primitives.Epoch) bool {
|
|
if val == nil {
|
|
return false
|
|
}
|
|
return hasETH1WithdrawalCredential(val) && val.WithdrawableEpoch <= epoch
|
|
}
|
|
|
|
// isPartiallyWithdrawable returns whether the validator is able to perform a
|
|
// partial withdrawal. This function assumes that the caller has a lock on the state
|
|
func isPartiallyWithdrawableValidator(val *ethpb.Validator, balance uint64) bool {
|
|
if val == nil {
|
|
return false
|
|
}
|
|
hasMaxBalance := val.EffectiveBalance == params.BeaconConfig().MaxEffectiveBalance
|
|
hasExcessBalance := balance > params.BeaconConfig().MaxEffectiveBalance
|
|
return hasETH1WithdrawalCredential(val) && hasExcessBalance && hasMaxBalance
|
|
}
|