From 3d25ba880b5a7f2f7e9375e25a5068e82acca271 Mon Sep 17 00:00:00 2001 From: Akira Takizawa Date: Wed, 15 Aug 2018 15:00:18 +0900 Subject: [PATCH] Use Callisto as a default folder dir --- node/defaults.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node/defaults.go b/node/defaults.go index c1376dba0f..97a03ed276 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", "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