mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
4dc65c5787
* Add GenValRoot dbs * Test genvalroot * Fix names * Add overwrite rejection Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
37 lines
933 B
Go
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
|
|
}
|