mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 11:57:18 +00:00
22 lines
822 B
Go
22 lines
822 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
|
|
}
|