2021-11-22 17:37:55 +00:00
|
|
|
package v3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/prysmaticlabs/go-bitfield"
|
2022-08-16 12:20:13 +00:00
|
|
|
ethpb "github.com/prysmaticlabs/prysm/v3/proto/prysm/v1alpha1"
|
2021-11-22 17:37:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// SetJustificationBits for the beacon state.
|
|
|
|
func (b *BeaconState) SetJustificationBits(val bitfield.Bitvector4) error {
|
|
|
|
if !b.hasInnerState() {
|
|
|
|
return ErrNilInnerState
|
|
|
|
}
|
|
|
|
b.lock.Lock()
|
|
|
|
defer b.lock.Unlock()
|
|
|
|
|
|
|
|
b.state.JustificationBits = val
|
|
|
|
b.markFieldAsDirty(justificationBits)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetPreviousJustifiedCheckpoint for the beacon state.
|
|
|
|
func (b *BeaconState) SetPreviousJustifiedCheckpoint(val *ethpb.Checkpoint) error {
|
|
|
|
if !b.hasInnerState() {
|
|
|
|
return ErrNilInnerState
|
|
|
|
}
|
|
|
|
b.lock.Lock()
|
|
|
|
defer b.lock.Unlock()
|
|
|
|
|
|
|
|
b.state.PreviousJustifiedCheckpoint = val
|
|
|
|
b.markFieldAsDirty(previousJustifiedCheckpoint)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetCurrentJustifiedCheckpoint for the beacon state.
|
|
|
|
func (b *BeaconState) SetCurrentJustifiedCheckpoint(val *ethpb.Checkpoint) error {
|
|
|
|
if !b.hasInnerState() {
|
|
|
|
return ErrNilInnerState
|
|
|
|
}
|
|
|
|
b.lock.Lock()
|
|
|
|
defer b.lock.Unlock()
|
|
|
|
|
|
|
|
b.state.CurrentJustifiedCheckpoint = val
|
|
|
|
b.markFieldAsDirty(currentJustifiedCheckpoint)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetFinalizedCheckpoint for the beacon state.
|
|
|
|
func (b *BeaconState) SetFinalizedCheckpoint(val *ethpb.Checkpoint) error {
|
|
|
|
if !b.hasInnerState() {
|
|
|
|
return ErrNilInnerState
|
|
|
|
}
|
|
|
|
b.lock.Lock()
|
|
|
|
defer b.lock.Unlock()
|
|
|
|
|
|
|
|
b.state.FinalizedCheckpoint = val
|
|
|
|
b.markFieldAsDirty(finalizedCheckpoint)
|
|
|
|
return nil
|
|
|
|
}
|