Merge pull request #1011 from obscuren/upgradedb_fix

cmd/geth: delete state db on upgradedb command
This commit is contained in:
Jeffrey Wilcke 2015-05-16 08:48:49 -07:00
commit 426c70ac0b
1 changed files with 1 additions and 0 deletions

View File

@ -574,6 +574,7 @@ func upgradeDb(ctx *cli.Context) {
ethereum.ExtraDb().Close()
os.RemoveAll(filepath.Join(ctx.GlobalString(utils.DataDirFlag.Name), "blockchain"))
os.RemoveAll(filepath.Join(ctx.GlobalString(utils.DataDirFlag.Name), "state"))
ethereum, err = eth.New(cfg)
if err != nil {