diff options
author | Chun Kuan Lee <ken2812221@gmail.com> | 2019-02-23 22:25:24 +0800 |
---|---|---|
committer | Chun Kuan Lee <ken2812221@gmail.com> | 2019-02-23 23:44:28 +0800 |
commit | 6ad79cbd562d04ebbcb61c774fb3389e70fedb7c (patch) | |
tree | df3e967adbacd7105162fea735164fc99ee50342 /src/wallet | |
parent | f3f9c1de19e6d254e0c3a26ce7a3d8cd57fb7641 (diff) |
wallet: Use fsbridge::ifstream to fix Windows path issue
Diffstat (limited to 'src/wallet')
-rw-r--r-- | src/wallet/walletutil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/walletutil.cpp b/src/wallet/walletutil.cpp index 6db4c63acb..d779251d56 100644 --- a/src/wallet/walletutil.cpp +++ b/src/wallet/walletutil.cpp @@ -35,7 +35,7 @@ static bool IsBerkeleyBtree(const fs::path& path) boost::system::error_code ec; if (fs::file_size(path, ec) < 4096) return false; - fs::ifstream file(path.string(), std::ios::binary); + fsbridge::ifstream file(path, std::ios::binary); if (!file.is_open()) return false; file.seekg(12, std::ios::beg); // Magic bytes start at offset 12 |