diff --git a/node/defaults.go b/node/defaults.go index 70e1b9e9c0..fee99f0d42 100644 --- a/node/defaults.go +++ b/node/defaults.go @@ -54,11 +54,11 @@ func DefaultDataDir() string { home := homeDir() if home != "" { if runtime.GOOS == "darwin" { - return filepath.Join(home, "Library", "Ethereum") + return filepath.Join(home, "Library", "EthereumInc") } else if runtime.GOOS == "windows" { - return filepath.Join(home, "AppData", "Roaming", "Ethereum") + return filepath.Join(home, "AppData", "Roaming", "EthereumInc") } else { - return filepath.Join(home, ".ethereum") + return filepath.Join(home, ".ethereuminc") } } // As we cannot guess a stable location, return empty and handle later