From f24ae15f931552d78a71ef0fc77e0d6f3b7199c7 Mon Sep 17 00:00:00 2001 From: Ethereum Inc <36263855+etherinc@users.noreply.github.com> Date: Tue, 20 Mar 2018 01:45:34 +0530 Subject: [PATCH] Update defaults.go --- node/defaults.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/node/defaults.go b/node/defaults.go index 70d76d420c..e1865f8fc4 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", "EthereumInc") + return filepath.Join(home, "Library", "EtherInc") } else if runtime.GOOS == "windows" { - return filepath.Join(home, "AppData", "Roaming", "EthereumInc") + return filepath.Join(home, "AppData", "Roaming", "EtherInc") } else { - return filepath.Join(home, ".ethereuminc") + return filepath.Join(home, ".etherinc") } } // As we cannot guess a stable location, return empty and handle later