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