prysm-pulse/beacon-chain/state/altair.go
Raul Jordan 9145310647
Eliminate Proto V2 Namespace (#9297)
* get rid of v2 in prysm codebase

* replace block2

* builds

* terence comments

* gazelle
2021-07-28 21:23:44 +00:00

22 lines
832 B
Go

package state
import statepb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
// BeaconStateAltair has read and write access to beacon state methods.
type BeaconStateAltair interface {
BeaconState
CurrentSyncCommittee() (*statepb.SyncCommittee, error)
NextSyncCommittee() (*statepb.SyncCommittee, error)
SetCurrentSyncCommittee(val *statepb.SyncCommittee) error
SetNextSyncCommittee(val *statepb.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
}