mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 19:21:19 +00:00
b4c27f64de
* fix up all tests * Update beacon-chain/state/v2/BUILD.bazel * add tests
24 lines
967 B
Go
24 lines
967 B
Go
package state
|
|
|
|
import ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
|
|
// BeaconStateAltair has read and write access to beacon state methods.
|
|
type BeaconStateAltair interface {
|
|
BeaconState
|
|
CurrentSyncCommittee() (*ethpb.SyncCommittee, error)
|
|
NextSyncCommittee() (*ethpb.SyncCommittee, error)
|
|
SetCurrentSyncCommittee(val *ethpb.SyncCommittee) error
|
|
SetNextSyncCommittee(val *ethpb.SyncCommittee) error
|
|
CurrentEpochParticipation() ([]byte, error)
|
|
PreviousEpochParticipation() ([]byte, error)
|
|
InactivityScores() ([]uint64, error)
|
|
AppendCurrentParticipationBits(val byte) error
|
|
AppendPreviousParticipationBits(val byte) error
|
|
AppendInactivityScore(s uint64) error
|
|
SetInactivityScores(val []uint64) error
|
|
SetPreviousParticipationBits(val []byte) error
|
|
SetCurrentParticipationBits(val []byte) error
|
|
ModifyCurrentParticipationBits(func(val []byte) ([]byte, error)) error
|
|
ModifyPreviousParticipationBits(func(val []byte) ([]byte, error)) error
|
|
}
|