mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
d077483577
* v3 import renamings * tidy * fmt * rev * Update beacon-chain/core/epoch/precompute/reward_penalty_test.go * Update beacon-chain/core/helpers/validators_test.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/alias.go * Update beacon-chain/db/iface/BUILD.bazel * Update beacon-chain/db/kv/kv.go * Update beacon-chain/db/kv/state.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/rpc/prysm/v1alpha1/validator/attester_test.go * Update beacon-chain/sync/initial-sync/service.go * fix deps * fix bad replacements * fix bad replacements * change back * gohashtree version * fix deps Co-authored-by: Nishant Das <nishdas93@gmail.com> Co-authored-by: Potuz <potuz@prysmaticlabs.com>
82 lines
2.8 KiB
Go
82 lines
2.8 KiB
Go
package historycmd
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
|
|
"github.com/pkg/errors"
|
|
"github.com/prysmaticlabs/prysm/v3/cmd"
|
|
"github.com/prysmaticlabs/prysm/v3/cmd/validator/flags"
|
|
"github.com/prysmaticlabs/prysm/v3/io/file"
|
|
"github.com/prysmaticlabs/prysm/v3/validator/accounts/userprompt"
|
|
"github.com/prysmaticlabs/prysm/v3/validator/db/kv"
|
|
slashingprotection "github.com/prysmaticlabs/prysm/v3/validator/slashing-protection-history"
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// Reads an input slashing protection EIP-3076
|
|
// standard JSON file and attempts to insert its data into our validator DB.
|
|
//
|
|
// Steps:
|
|
// 1. Parse a path to the validator's datadir from the CLI context.
|
|
// 2. Open the validator database.
|
|
// 3. Read the JSON file from user input.
|
|
// 4. Call the function which actually imports the data from
|
|
// from the standard slashing protection JSON file into our database.
|
|
func importSlashingProtectionJSON(cliCtx *cli.Context) error {
|
|
var err error
|
|
dataDir := cliCtx.String(cmd.DataDirFlag.Name)
|
|
if !cliCtx.IsSet(cmd.DataDirFlag.Name) {
|
|
dataDir, err = userprompt.InputDirectory(cliCtx, userprompt.DataDirDirPromptText, cmd.DataDirFlag)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "could not read directory value from input")
|
|
}
|
|
}
|
|
// ensure that the validator.db is found under the specified dir or its subdirectories
|
|
found, _, err := file.RecursiveFileFind(kv.ProtectionDbFileName, dataDir)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error finding validator database at path %s", dataDir)
|
|
}
|
|
if !found {
|
|
log.Infof(
|
|
"Did not find existing validator.db inside of %s, creating a new one",
|
|
dataDir,
|
|
)
|
|
} else {
|
|
log.Infof("Found existing validator.db inside of %s", dataDir)
|
|
}
|
|
valDB, err := kv.NewKVStore(cliCtx.Context, dataDir, &kv.Config{})
|
|
if err != nil {
|
|
return errors.Wrapf(err, "could not access validator database at path: %s", dataDir)
|
|
}
|
|
defer func() {
|
|
if err := valDB.Close(); err != nil {
|
|
log.WithError(err).Errorf("Could not close validator DB")
|
|
}
|
|
}()
|
|
protectionFilePath, err := userprompt.InputDirectory(cliCtx, userprompt.SlashingProtectionJSONPromptText, flags.SlashingProtectionJSONFileFlag)
|
|
if err != nil {
|
|
return errors.Wrap(err, "could not get slashing protection json file")
|
|
}
|
|
if protectionFilePath == "" {
|
|
return fmt.Errorf(
|
|
"no path to a slashing_protection.json file specified, please retry or "+
|
|
"you can also specify it with the %s flag",
|
|
flags.SlashingProtectionJSONFileFlag.Name,
|
|
)
|
|
}
|
|
enc, err := file.ReadFileAsBytes(protectionFilePath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
log.Infof("Starting import of slashing protection file %s", protectionFilePath)
|
|
buf := bytes.NewBuffer(enc)
|
|
if err := slashingprotection.ImportStandardProtectionJSON(
|
|
cliCtx.Context, valDB, buf,
|
|
); err != nil {
|
|
return err
|
|
}
|
|
log.Infof("Slashing protection JSON successfully imported into %s", dataDir)
|
|
return nil
|
|
}
|