From a91c21dd2d69072bdabf1f2b3f55457a201c7e95 Mon Sep 17 00:00:00 2001 From: Micah Zoltu Date: Sat, 20 Feb 2016 13:03:26 -0800 Subject: [PATCH] Changes blockchain storage location to AppData Local. Fixes #2237. --- common/path.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/path.go b/common/path.go index 3468b3366f..f0b7f3256b 100644 --- a/common/path.go +++ b/common/path.go @@ -88,7 +88,7 @@ func DefaultDataDir() string { if runtime.GOOS == "darwin" { return filepath.Join(usr.HomeDir, "Library", "Ethereum") } else if runtime.GOOS == "windows" { - return filepath.Join(usr.HomeDir, "AppData", "Roaming", "Ethereum") + return filepath.Join(usr.HomeDir, "AppData", "Local", "Ethereum") } else { return filepath.Join(usr.HomeDir, ".ethereum") }