aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMeshCollider <dobsonsa68@gmail.com>2017-10-27 15:15:40 +1300
committerMeshCollider <dobsonsa68@gmail.com>2017-11-18 00:50:59 +1300
commit9587a9c12b5d54263787a23c75f570db368318c1 (patch)
tree8fe3ceaca77bd217c1b7b5adb982502467f5e5c8 /src
parentd9878890e4539d7113fae880f612e68640e69462 (diff)
downloadbitcoin-9587a9c12b5d54263787a23c75f570db368318c1.tar.xz
Default walletdir is wallets/ if it exists
Diffstat (limited to 'src')
-rw-r--r--src/wallet/walletutil.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/wallet/walletutil.cpp b/src/wallet/walletutil.cpp
index 85ac428b25..fbb5215a51 100644
--- a/src/wallet/walletutil.cpp
+++ b/src/wallet/walletutil.cpp
@@ -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;