From adfbd772d81efc7e1db8728b5e203b79e664ac01 Mon Sep 17 00:00:00 2001 From: Derek May <32908855+riddlez666@users.noreply.github.com> Date: Wed, 14 Mar 2018 16:02:34 -0700 Subject: [PATCH] paths --- node/defaults.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node/defaults.go b/node/defaults.go index e59818427c..031d1f6040 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", "EtherGem") } else if runtime.GOOS == "windows" { - return filepath.Join(home, "AppData", "Roaming", "Ethereum") + return filepath.Join(home, "AppData", "Roaming", "EtherGem") } else { - return filepath.Join(home, ".ethereum") + return filepath.Join(home, ".ethergem") } } // As we cannot guess a stable location, return empty and handle later