mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-04 00:44:27 +00:00
78a865eb0b
* Replaced. Debugging missing strict dependencies... * Merge branch 'master' into bbolt-import * Update import path * Merge branch 'bbolt-import' of github.com:prysmaticlabs/prysm into bbolt-import * use forked prombbolt * Merge branch 'bbolt-import' of github.com:prysmaticlabs/prysm into bbolt-import * fix * remove old boltdb reference * Use correct bolt for pk manager * Merge branch 'bbolt-import' of github.com:prysmaticlabs/prysm into bbolt-import * fix for docker build * gaz, oops
48 lines
1.3 KiB
Go
48 lines
1.3 KiB
Go
package kv
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
"github.com/pkg/errors"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
bolt "go.etcd.io/bbolt"
|
|
"go.opencensus.io/trace"
|
|
)
|
|
|
|
// ChainHead retrieves the persisted chain head from the database accordingly.
|
|
func (db *Store) ChainHead(ctx context.Context) (*ethpb.ChainHead, error) {
|
|
ctx, span := trace.StartSpan(ctx, "slasherDB.ChainHead")
|
|
defer span.End()
|
|
var res *ethpb.ChainHead
|
|
if err := db.update(func(tx *bolt.Tx) error {
|
|
bucket := tx.Bucket(chainDataBucket)
|
|
enc := bucket.Get([]byte(chainHeadKey))
|
|
if enc == nil {
|
|
return nil
|
|
}
|
|
res = ðpb.ChainHead{}
|
|
return proto.Unmarshal(enc, res)
|
|
}); err != nil {
|
|
return nil, err
|
|
}
|
|
return res, nil
|
|
}
|
|
|
|
// SaveChainHead accepts a beacon chain head object and persists it to the DB.
|
|
func (db *Store) SaveChainHead(ctx context.Context, head *ethpb.ChainHead) error {
|
|
ctx, span := trace.StartSpan(ctx, "slasherDB.SaveChainHead")
|
|
defer span.End()
|
|
enc, err := proto.Marshal(head)
|
|
if err != nil {
|
|
return errors.Wrap(err, "failed to encode chain head")
|
|
}
|
|
return db.update(func(tx *bolt.Tx) error {
|
|
bucket := tx.Bucket(chainDataBucket)
|
|
if err := bucket.Put([]byte(chainHeadKey), enc); err != nil {
|
|
return errors.Wrap(err, "failed to save chain head to db")
|
|
}
|
|
return err
|
|
})
|
|
}
|