aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWei-Ning Huang <w@cobinhood.com>2018-10-13 13:56:43 +0800
committerWei-Ning Huang <w@dexon.org>2018-12-19 20:54:27 +0800
commite808bc4a27ce8aa8bdb3f085b3d944d3543e118c (patch)
tree0d988a8ac0e44b6ac90b89d28d07dccba8caffa5
parent84139966773695c82170d784cdbc4c1e35687a6a (diff)
downloaddexon-e808bc4a27ce8aa8bdb3f085b3d944d3543e118c.tar
dexon-e808bc4a27ce8aa8bdb3f085b3d944d3543e118c.tar.gz
dexon-e808bc4a27ce8aa8bdb3f085b3d944d3543e118c.tar.bz2
dexon-e808bc4a27ce8aa8bdb3f085b3d944d3543e118c.tar.lz
dexon-e808bc4a27ce8aa8bdb3f085b3d944d3543e118c.tar.xz
dexon-e808bc4a27ce8aa8bdb3f085b3d944d3543e118c.tar.zst
dexon-e808bc4a27ce8aa8bdb3f085b3d944d3543e118c.zip
node: change default datadir folder name to dexon
-rw-r--r--node/defaults.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/node/defaults.go b/node/defaults.go
index 6d7b6e155..ec4fc8039 100644
--- a/node/defaults.go
+++ b/node/defaults.go
@@ -57,11 +57,11 @@ func DefaultDataDir() string {
home := homeDir()
if home != "" {
if runtime.GOOS == "darwin" {
- return filepath.Join(home, "Library", "Ethereum")
+ return filepath.Join(home, "Library", "Dexon")
} else if runtime.GOOS == "windows" {
- return filepath.Join(home, "AppData", "Roaming", "Ethereum")
+ return filepath.Join(home, "AppData", "Roaming", "Dexon")
} else {
- return filepath.Join(home, ".ethereum")
+ return filepath.Join(home, ".dexon")
}
}
// As we cannot guess a stable location, return empty and handle later