aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authorChun Kuan Lee <ken2812221@gmail.com>2018-09-11 02:08:56 +0800
committerChun Kuan Lee <ken2812221@gmail.com>2018-09-11 03:11:39 +0800
commite2213689328f8ba42af1d32d12c7b78a71f1ddc7 (patch)
treeba99e353bfa32fe4e0ee0ed86480acfc9a9e7654 /src/wallet
parent6eeac2e628b5332dcaee60e5c83861c94e44d04d (diff)
downloadbitcoin-e2213689328f8ba42af1d32d12c7b78a71f1ddc7.tar.xz
utils: Convert fs error messages from multibyte to utf-8
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/db.cpp2
-rw-r--r--src/wallet/wallet.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/db.cpp b/src/wallet/db.cpp
index dfd60ae5eb..025ae29753 100644
--- a/src/wallet/db.cpp
+++ b/src/wallet/db.cpp
@@ -783,7 +783,7 @@ bool BerkeleyDatabase::Backup(const std::string& strDest)
LogPrintf("copied %s to %s\n", strFile, pathDest.string());
return true;
} catch (const fs::filesystem_error& e) {
- LogPrintf("error copying %s to %s - %s\n", strFile, pathDest.string(), e.what());
+ LogPrintf("error copying %s to %s - %s\n", strFile, pathDest.string(), fsbridge::get_filesystem_error_message(e));
return false;
}
}
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp
index de707a09f4..690c7936d8 100644
--- a/src/wallet/wallet.cpp
+++ b/src/wallet/wallet.cpp
@@ -3849,7 +3849,7 @@ bool CWallet::Verify(std::string wallet_file, bool salvage_wallet, std::string&
return false;
}
} catch (const fs::filesystem_error& e) {
- error_string = strprintf("Error loading wallet %s. %s", wallet_file, e.what());
+ error_string = strprintf("Error loading wallet %s. %s", wallet_file, fsbridge::get_filesystem_error_message(e));
return false;
}