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/qt/intro.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/qt/intro.cpp')
| -rw-r--r-- | src/qt/intro.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/qt/intro.cpp b/src/qt/intro.cpp index 9e4c76510..7f8a8394e 100644 --- a/src/qt/intro.cpp +++ b/src/qt/intro.cpp @@ -214,7 +214,10 @@ bool Intro::pickDataDirectory() } dataDir = intro.getDataDirectory(); try { - TryCreateDirectories(GUIUtil::qstringToBoostPath(dataDir)); + if (TryCreateDirectories(GUIUtil::qstringToBoostPath(dataDir))) { + // If a new data directory has been created, make wallets subdirectory too + TryCreateDirectories(GUIUtil::qstringToBoostPath(dataDir) / "wallets"); + } break; } catch (const fs::filesystem_error&) { QMessageBox::critical(0, tr(PACKAGE_NAME), |