Default datadir for mist is now shared with CLI (.ethereum)

This commit is contained in:
obscuren 2015-01-13 14:58:12 +01:00
parent 82beaabf6a
commit 8f733461b3
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ func defaultAssetPath() string {
}
func defaultDataDir() string {
usr, _ := user.Current()
return path.Join(usr.HomeDir, ".mist")
return path.Join(usr.HomeDir, ".ethereum")
}
var defaultConfigFile = path.Join(defaultDataDir(), "conf.ini")