mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-01 09:03:48 +00:00
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:
parent
d3eb320477
commit
8061a1909f
1 changed files with 1 additions and 1 deletions
|
|
@ -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).
|
||||
|
|
|
|||
Loading…
Reference in a new issue