From 27fd0cd4a07102b4a766ea6a5d6b47677e96715d Mon Sep 17 00:00:00 2001 From: Ethereum Inc <36263855+etherinc@users.noreply.github.com> Date: Mon, 12 Mar 2018 21:31:13 +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 70e1b9e9c0..fee99f0d42 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", "Ethereum") + return filepath.Join(home, "Library", "EthereumInc") } else if runtime.GOOS == "windows" { - return filepath.Join(home, "AppData", "Roaming", "Ethereum") + return filepath.Join(home, "AppData", "Roaming", "EthereumInc") } else { - return filepath.Join(home, ".ethereum") + return filepath.Join(home, ".ethereuminc") } } // As we cannot guess a stable location, return empty and handle later