mirror of
https://github.com/dashpay/dash.git
synced 2024-12-27 04:52:59 +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 {
|
} else {
|
||||||
path = GetDataDir();
|
path = GetDataDir();
|
||||||
|
// If a wallets directory exists, use that, otherwise default to GetDataDir
|
||||||
|
if (fs::is_directory(path / "wallets")) {
|
||||||
|
path /= "wallets";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return path;
|
return path;
|
||||||
|
Loading…
Reference in New Issue
Block a user