From 1018854385c433f711bb29c446cf2614c98dd2b5 Mon Sep 17 00:00:00 2001 From: Yohan Graterol Date: Sat, 2 Dec 2017 22:01:05 -0500 Subject: [PATCH] Change data location --- node/defaults.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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