mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
Default walletdir is wallets/ if it exists
This commit is contained in:
parent
d9878890e4
commit
9587a9c12b
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user