mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
50 lines
1.5 KiB
Go
50 lines
1.5 KiB
Go
|
package kv
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/prysmaticlabs/prysm/encoding/bytesutil"
|
||
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
||
|
bolt "go.etcd.io/bbolt"
|
||
|
"go.opencensus.io/trace"
|
||
|
)
|
||
|
|
||
|
// LastValidatedCheckpoint returns the latest fully validated checkpoint in beacon chain.
|
||
|
func (s *Store) LastValidatedCheckpoint(ctx context.Context) (*ethpb.Checkpoint, error) {
|
||
|
ctx, span := trace.StartSpan(ctx, "BeaconDB.LastValidatedCheckpoint")
|
||
|
defer span.End()
|
||
|
var checkpoint *ethpb.Checkpoint
|
||
|
err := s.db.View(func(tx *bolt.Tx) error {
|
||
|
bkt := tx.Bucket(checkpointBucket)
|
||
|
enc := bkt.Get(lastValidatedCheckpointKey)
|
||
|
if enc == nil {
|
||
|
var finErr error
|
||
|
checkpoint, finErr = s.FinalizedCheckpoint(ctx)
|
||
|
return finErr
|
||
|
}
|
||
|
checkpoint = ðpb.Checkpoint{}
|
||
|
return decode(ctx, enc, checkpoint)
|
||
|
})
|
||
|
return checkpoint, err
|
||
|
}
|
||
|
|
||
|
// SaveLastValidatedCheckpoint saves the last validated checkpoint in beacon chain.
|
||
|
func (s *Store) SaveLastValidatedCheckpoint(ctx context.Context, checkpoint *ethpb.Checkpoint) error {
|
||
|
ctx, span := trace.StartSpan(ctx, "BeaconDB.SaveLastValidatedCheckpoint")
|
||
|
defer span.End()
|
||
|
|
||
|
enc, err := encode(ctx, checkpoint)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return s.db.Update(func(tx *bolt.Tx) error {
|
||
|
bucket := tx.Bucket(checkpointBucket)
|
||
|
hasStateSummary := s.hasStateSummaryBytes(tx, bytesutil.ToBytes32(checkpoint.Root))
|
||
|
hasStateInDB := tx.Bucket(stateBucket).Get(checkpoint.Root) != nil
|
||
|
if !(hasStateInDB || hasStateSummary) {
|
||
|
return errMissingStateForCheckpoint
|
||
|
}
|
||
|
return bucket.Put(lastValidatedCheckpointKey, enc)
|
||
|
})
|
||
|
}
|