diff options
| author | MeshCollider <[email protected]> | 2017-10-12 22:04:46 +1300 |
|---|---|---|
| committer | MeshCollider <[email protected]> | 2017-11-18 00:50:59 +1300 |
| commit | 8263f6a5ac3f3af102a2819b7e179b00db7e0437 (patch) | |
| tree | 2d08c4f8eeed52a2c1101d0fe1c16556d6da2b73 /src/util.cpp | |
| parent | Default walletdir is wallets/ if it exists (diff) | |
| download | discoin-8263f6a5ac3f3af102a2819b7e179b00db7e0437.tar.xz discoin-8263f6a5ac3f3af102a2819b7e179b00db7e0437.zip | |
Create walletdir if datadir doesn't exist and fix tests
Diffstat (limited to 'src/util.cpp')
| -rw-r--r-- | src/util.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp index b87dd091b..d58f39e96 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -574,7 +574,10 @@ const fs::path &GetDataDir(bool fNetSpecific) if (fNetSpecific) path /= BaseParams().DataDir(); - fs::create_directories(path); + if (fs::create_directories(path)) { + // This is the first run, create wallets subdirectory too + fs::create_directories(path / "wallets"); + } return path; } |