mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 18:21:20 +00:00
9fe2cdd5ca
* Define proto * Regen * Delete slasher.pb.go * Gaz * Merge branch 'state-summary-proto' of https://github.com/prysmaticlabs/prysm into state-summary-proto * Revert "Delete slasher.pb.go" This reverts commit 19bfa21cd3294bc5f684fe68968250de76a8f5bd. * Add state_summary.go * Test * Gaz * Interaces * pass through * Merge refs/heads/master into state-summary-db * Merge refs/heads/master into state-summary-db
58 lines
1.5 KiB
Go
58 lines
1.5 KiB
Go
package kv
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/boltdb/bolt"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
"go.opencensus.io/trace"
|
|
)
|
|
|
|
// SaveStateSummary saves a state summary object to the DB.
|
|
func (k *Store) SaveStateSummary(ctx context.Context, summary *pb.StateSummary) error {
|
|
ctx, span := trace.StartSpan(ctx, "BeaconDB.SaveStateSummary")
|
|
defer span.End()
|
|
|
|
enc, err := encode(summary)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return k.db.Update(func(tx *bolt.Tx) error {
|
|
bucket := tx.Bucket(stateSummaryBucket)
|
|
return bucket.Put(summary.Root, enc)
|
|
})
|
|
}
|
|
|
|
// StateSummary returns the state summary object from the db using input block root.
|
|
func (k *Store) StateSummary(ctx context.Context, blockRoot [32]byte) (*pb.StateSummary, error) {
|
|
ctx, span := trace.StartSpan(ctx, "BeaconDB.StateSummary")
|
|
defer span.End()
|
|
|
|
var summary *pb.StateSummary
|
|
err := k.db.View(func(tx *bolt.Tx) error {
|
|
bucket := tx.Bucket(stateSummaryBucket)
|
|
enc := bucket.Get(blockRoot[:])
|
|
if enc == nil {
|
|
return nil
|
|
}
|
|
summary = &pb.StateSummary{}
|
|
return decode(enc, summary)
|
|
})
|
|
|
|
return summary, err
|
|
}
|
|
|
|
// HasStateSummary returns true if a state summary exists in DB.
|
|
func (k *Store) HasStateSummary(ctx context.Context, blockRoot [32]byte) bool {
|
|
ctx, span := trace.StartSpan(ctx, "BeaconDB.HasStateSummary")
|
|
defer span.End()
|
|
var exists bool
|
|
// #nosec G104. Always returns nil.
|
|
k.db.View(func(tx *bolt.Tx) error {
|
|
bucket := tx.Bucket(stateSummaryBucket)
|
|
exists = bucket.Get(blockRoot[:]) != nil
|
|
return nil
|
|
})
|
|
return exists
|
|
}
|