You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I start miner in the geth, Ethash directory is C:\Users\User\AppData\Ethash
But it should be (and is in the ethminer) C:\Users\User\AppData\Local\Ethash
Proper way to get this location in Windows is %LOCALAPPDATA%
So I would say it should look like
if runtime.GOOS == "windows" {
return filepath.Join(os.Getenv("LOCALAPPDATA"), "Ethash")
}
The text was updated successfully, but these errors were encountered:
If I start miner in the geth, Ethash directory is C:\Users\User\AppData\Ethash
But it should be (and is in the ethminer) C:\Users\User\AppData\Local\Ethash
Proper way to get this location in Windows is %LOCALAPPDATA%
So I would say it should look like
The text was updated successfully, but these errors were encountered: