diff options
author | obscuren <geffobscura@gmail.com> | 2015-01-13 21:58:12 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-01-13 21:58:12 +0800 |
commit | 8f733461b3f4aee982eb9991d46ff828281b1ac9 (patch) | |
tree | cbea906c9fbfbfcde263d4dbd99aa8c021a276e6 /cmd | |
parent | 82beaabf6a8b5a146a38e1d6a31a78157c79a0cf (diff) | |
download | dexon-8f733461b3f4aee982eb9991d46ff828281b1ac9.tar dexon-8f733461b3f4aee982eb9991d46ff828281b1ac9.tar.gz dexon-8f733461b3f4aee982eb9991d46ff828281b1ac9.tar.bz2 dexon-8f733461b3f4aee982eb9991d46ff828281b1ac9.tar.lz dexon-8f733461b3f4aee982eb9991d46ff828281b1ac9.tar.xz dexon-8f733461b3f4aee982eb9991d46ff828281b1ac9.tar.zst dexon-8f733461b3f4aee982eb9991d46ff828281b1ac9.zip |
Default datadir for mist is now shared with CLI (.ethereum)
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/mist/flags.go | 2 |
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") |