cosmos-sdk/cmd/commands/reset.go

22 lines
504 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
2017-04-15 09:07:27 -07:00
tmcmd "github.com/tendermint/tendermint/cmd/tendermint/commands"
2017-03-13 17:20:07 -07:00
tmcfg "github.com/tendermint/tendermint/config/tendermint"
)
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 {
2017-03-13 17:20:07 -07:00
basecoinDir := BasecoinRoot("")
2017-04-21 13:50:12 -07:00
tmConfig := tmcfg.GetConfig(basecoinDir)
2017-04-15 09:07:27 -07:00
tmcmd.ResetAll(tmConfig, log)
return nil
2017-03-13 17:20:07 -07:00
}