32 lines
689 B
Go
32 lines
689 B
Go
package server
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
tcmd "github.com/tendermint/tendermint/cmd/tendermint/commands"
|
|
"github.com/tendermint/tmlibs/log"
|
|
)
|
|
|
|
// UnsafeResetAllCmd - extension of the tendermint command, resets initialization
|
|
func UnsafeResetAllCmd(logger log.Logger) *cobra.Command {
|
|
cmd := resetAll{logger}
|
|
return &cobra.Command{
|
|
Use: "unsafe_reset_all",
|
|
Short: "Reset all blockchain data",
|
|
RunE: cmd.run,
|
|
}
|
|
}
|
|
|
|
type resetAll struct {
|
|
logger log.Logger
|
|
}
|
|
|
|
func (r resetAll) run(cmd *cobra.Command, args []string) error {
|
|
cfg, err := tcmd.ParseConfig()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
tcmd.ResetAll(cfg.DBDir(), cfg.PrivValidatorFile(), r.logger)
|
|
return nil
|
|
}
|