From 20cbf5dffd261d0613ae5074be83ecd08f0cdd2b Mon Sep 17 00:00:00 2001 From: Ethereum Inc <36263855+etherinc@users.noreply.github.com> Date: Mon, 12 Mar 2018 23:47:23 +0530 Subject: [PATCH] Update config.go --- eth/config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eth/config.go b/eth/config.go index 360ba52e3a..b881a7fdf7 100644 --- a/eth/config.go +++ b/eth/config.go @@ -65,9 +65,9 @@ func init() { } } if runtime.GOOS == "windows" { - DefaultConfig.Ethash.DatasetDir = filepath.Join(home, "AppData", "Ethash") + DefaultConfig.Ethash.DatasetDir = filepath.Join(home, "AppData", "Etihash") } else { - DefaultConfig.Ethash.DatasetDir = filepath.Join(home, ".ethash") + DefaultConfig.Ethash.DatasetDir = filepath.Join(home, ".etihash") } }