cosmos-sdk/cmd/commands/reset.go

23 lines
468 B
Go
Raw Normal View History

2017-03-13 17:20:07 -07:00
package commands
import (
"github.com/spf13/cobra"
2017-03-13 17:20:07 -07:00
tmcmd "github.com/tendermint/tendermint/cmd/tendermint/commands"
2017-03-13 17:20:07 -07:00
)
var UnsafeResetAllCmd = &cobra.Command{
Use: "unsafe_reset_all",
Short: "Reset all blockchain data",
2017-04-15 09:07:27 -07:00
RunE: unsafeResetAllCmd,
2017-03-13 17:20:07 -07:00
}
2017-04-15 09:07:27 -07:00
func unsafeResetAllCmd(cmd *cobra.Command, args []string) error {
cfg, err := getTendermintConfig()
if err != nil {
return err
}
tmcmd.ResetAll(cfg.DBDir(), cfg.PrivValidatorFile(), logger)
2017-04-15 09:07:27 -07:00
return nil
2017-03-13 17:20:07 -07:00
}