Fix Data Directory Location (#24566)

After looking into the newest geth version and installed geth on my windows os, i found the location of data directory is on :
%LOCALAPPDATA%\Ethereum

not

%APPDATA%\Ethereum
This commit is contained in:
Gun Gun Febrianza 2022-03-20 18:15:02 +07:00 committed by GitHub
parent d3eb320477
commit 8061a1909f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ directory locations are platform specific:
* Mac: `~/Library/Ethereum`
* Linux: `~/.ethereum`
* Windows: `%APPDATA%\Ethereum`
* Windows: `%LOCALAPPDATA%\Ethereum`
Accounts are stored in the `keystore` subdirectory. The contents of this directories
should be transportable between nodes, platforms, implementations (C++, Go, Python).