mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
59 lines
1.8 KiB
Go
59 lines
1.8 KiB
Go
package kv
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/shared/cmd"
|
|
"github.com/prysmaticlabs/prysm/shared/featureconfig"
|
|
bolt "go.etcd.io/bbolt"
|
|
)
|
|
|
|
var historicalStateDeletedKey = []byte("historical-states-deleted")
|
|
|
|
// HistoricalStatesDeleted verifies historical states exist in DB.
|
|
func (kv *Store) HistoricalStatesDeleted(ctx context.Context) error {
|
|
if featureconfig.Get().DisableNewStateMgmt {
|
|
return kv.db.Update(func(tx *bolt.Tx) error {
|
|
bkt := tx.Bucket(newStateServiceCompatibleBucket)
|
|
return bkt.Put(historicalStateDeletedKey, []byte{0x01})
|
|
})
|
|
}
|
|
|
|
var historicalStateDeleted bool
|
|
if err := kv.db.View(func(tx *bolt.Tx) error {
|
|
bkt := tx.Bucket(newStateServiceCompatibleBucket)
|
|
v := bkt.Get(historicalStateDeletedKey)
|
|
historicalStateDeleted = len(v) == 1 && v[0] == 0x01
|
|
return nil
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
|
|
regenHistoricalStatesConfirmed := false
|
|
var err error
|
|
if historicalStateDeleted {
|
|
actionText := "--disable-new-state-mgmt was previously used and historical states cannot be found. To proceed without using the flag, the db will need " +
|
|
"to generate and re-save historical states. This process may take a while, - do you want to proceed? (Y/N)"
|
|
deniedText := "Historical states will not be generated. Please continue using --disable-new-state-mgmt"
|
|
|
|
regenHistoricalStatesConfirmed, err = cmd.ConfirmAction(actionText, deniedText)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if !regenHistoricalStatesConfirmed {
|
|
return errors.New("exiting... please use --disable-new-state-mgmt")
|
|
}
|
|
|
|
if err := kv.regenHistoricalStates(ctx); err != nil {
|
|
return errors.Wrap(err, "could not regenerate historical states, please retry")
|
|
}
|
|
}
|
|
|
|
return kv.db.Update(func(tx *bolt.Tx) error {
|
|
bkt := tx.Bucket(newStateServiceCompatibleBucket)
|
|
return bkt.Put(historicalStateDeletedKey, []byte{0x00})
|
|
})
|
|
}
|