Default walletdir is wallets/ if it exists

This commit is contained in:
MeshCollider 2017-10-27 15:15:40 +13:00
parent d9878890e4
commit 9587a9c12b
1 changed files with 4 additions and 0 deletions

View File

@ -17,6 +17,10 @@ fs::path GetWalletDir()
}
} else {
path = GetDataDir();
// If a wallets directory exists, use that, otherwise default to GetDataDir
if (fs::is_directory(path / "wallets")) {
path /= "wallets";
}
}
return path;