aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-13 21:58:12 +0800
committerobscuren <geffobscura@gmail.com>2015-01-13 21:58:12 +0800
commit8f733461b3f4aee982eb9991d46ff828281b1ac9 (patch)
treecbea906c9fbfbfcde263d4dbd99aa8c021a276e6
parent82beaabf6a8b5a146a38e1d6a31a78157c79a0cf (diff)
downloadgo-tangerine-8f733461b3f4aee982eb9991d46ff828281b1ac9.tar
go-tangerine-8f733461b3f4aee982eb9991d46ff828281b1ac9.tar.gz
go-tangerine-8f733461b3f4aee982eb9991d46ff828281b1ac9.tar.bz2
go-tangerine-8f733461b3f4aee982eb9991d46ff828281b1ac9.tar.lz
go-tangerine-8f733461b3f4aee982eb9991d46ff828281b1ac9.tar.xz
go-tangerine-8f733461b3f4aee982eb9991d46ff828281b1ac9.tar.zst
go-tangerine-8f733461b3f4aee982eb9991d46ff828281b1ac9.zip
Default datadir for mist is now shared with CLI (.ethereum)
-rw-r--r--cmd/mist/flags.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mist/flags.go b/cmd/mist/flags.go
index 2f0790b76..8a67cdd0a 100644
--- a/cmd/mist/flags.go
+++ b/cmd/mist/flags.go
@@ -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")