prysm-pulse/validator/db/kv/genesis.go
Ivan Martinez 4dc65c5787
Save GenesisValidatorsRoot from WaitForChainStart (#7855)
* Add GenValRoot dbs

* Test genvalroot

* Fix names

* Add overwrite rejection

Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
2020-11-20 18:06:12 +00:00

37 lines
933 B
Go

package kv
import (
"context"
"fmt"
bolt "go.etcd.io/bbolt"
)
// SaveGenesisValidatorsRoot saves the genesis validator root to db.
func (s *Store) SaveGenesisValidatorsRoot(ctx context.Context, genValRoot []byte) error {
err := s.db.Update(func(tx *bolt.Tx) error {
bkt := tx.Bucket(genesisInfoBucket)
enc := bkt.Get(genesisValidatorsRootKey)
if len(enc) != 0 {
return fmt.Errorf("cannot overwite existing genesis validators root: %#x", enc)
}
return bkt.Put(genesisValidatorsRootKey, genValRoot)
})
return err
}
// GenesisValidatorsRoot retrieves the genesis validator root from db.
func (s *Store) GenesisValidatorsRoot(ctx context.Context) ([]byte, error) {
var genValRoot []byte
err := s.db.View(func(tx *bolt.Tx) error {
bkt := tx.Bucket(genesisInfoBucket)
enc := bkt.Get(genesisValidatorsRootKey)
if len(enc) == 0 {
return nil
}
genValRoot = enc
return nil
})
return genValRoot, err
}