mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
71 lines
2.0 KiB
Go
71 lines
2.0 KiB
Go
|
package kv
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/boltdb/bolt"
|
||
|
"github.com/gogo/protobuf/proto"
|
||
|
"github.com/prysmaticlabs/go-ssz"
|
||
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
||
|
"go.opencensus.io/trace"
|
||
|
)
|
||
|
|
||
|
// VoluntaryExit retrieval by signing root.
|
||
|
func (k *Store) VoluntaryExit(ctx context.Context, exitRoot [32]byte) (*ethpb.VoluntaryExit, error) {
|
||
|
ctx, span := trace.StartSpan(ctx, "BeaconDB.VoluntaryExit")
|
||
|
defer span.End()
|
||
|
var exit *ethpb.VoluntaryExit
|
||
|
err := k.db.View(func(tx *bolt.Tx) error {
|
||
|
bkt := tx.Bucket(voluntaryExitsBucket)
|
||
|
enc := bkt.Get(exitRoot[:])
|
||
|
if enc == nil {
|
||
|
return nil
|
||
|
}
|
||
|
exit = ðpb.VoluntaryExit{}
|
||
|
return proto.Unmarshal(enc, exit)
|
||
|
})
|
||
|
return exit, err
|
||
|
}
|
||
|
|
||
|
// HasVoluntaryExit verifies if a voluntary exit is stored in the db by its signing root.
|
||
|
func (k *Store) HasVoluntaryExit(ctx context.Context, exitRoot [32]byte) bool {
|
||
|
ctx, span := trace.StartSpan(ctx, "BeaconDB.HasVoluntaryExit")
|
||
|
defer span.End()
|
||
|
exists := false
|
||
|
// #nosec G104. Always returns nil.
|
||
|
k.db.View(func(tx *bolt.Tx) error {
|
||
|
bkt := tx.Bucket(voluntaryExitsBucket)
|
||
|
exists = bkt.Get(exitRoot[:]) != nil
|
||
|
return nil
|
||
|
})
|
||
|
return exists
|
||
|
}
|
||
|
|
||
|
// SaveVoluntaryExit to the db by its signing root.
|
||
|
func (k *Store) SaveVoluntaryExit(ctx context.Context, exit *ethpb.VoluntaryExit) error {
|
||
|
ctx, span := trace.StartSpan(ctx, "BeaconDB.SaveVoluntaryExit")
|
||
|
defer span.End()
|
||
|
exitRoot, err := ssz.SigningRoot(exit)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
enc, err := proto.Marshal(exit)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return k.db.Update(func(tx *bolt.Tx) error {
|
||
|
bucket := tx.Bucket(voluntaryExitsBucket)
|
||
|
return bucket.Put(exitRoot[:], enc)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
// DeleteVoluntaryExit clears a voluntary exit from the db by its signing root.
|
||
|
func (k *Store) DeleteVoluntaryExit(ctx context.Context, exitRoot [32]byte) error {
|
||
|
ctx, span := trace.StartSpan(ctx, "BeaconDB.DeleteVoluntaryExit")
|
||
|
defer span.End()
|
||
|
return k.db.Update(func(tx *bolt.Tx) error {
|
||
|
bucket := tx.Bucket(voluntaryExitsBucket)
|
||
|
return bucket.Delete(exitRoot[:])
|
||
|
})
|
||
|
}
|