aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/rpcdump.cpp
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2018-08-15 21:05:21 +0800
committerfanquake <fanquake@gmail.com>2018-08-15 21:05:21 +0800
commit4b3b85c597a2d4139ecaa6b78b2fa9c89be3319f (patch)
treef143a7896985d040dc9dcf6f99001d221a816d3c /src/wallet/rpcdump.cpp
parent80127f074e3f04ac8a877cb5fe0489f45ae9564d (diff)
downloadbitcoin-4b3b85c597a2d4139ecaa6b78b2fa9c89be3319f.tar.xz
refactor: use fs:: over boost::filesystem::
Diffstat (limited to 'src/wallet/rpcdump.cpp')
-rw-r--r--src/wallet/rpcdump.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp
index 5800e75827..7cb41da39e 100644
--- a/src/wallet/rpcdump.cpp
+++ b/src/wallet/rpcdump.cpp
@@ -706,15 +706,15 @@ UniValue dumpwallet(const JSONRPCRequest& request)
EnsureWalletIsUnlocked(pwallet);
- boost::filesystem::path filepath = request.params[0].get_str();
- filepath = boost::filesystem::absolute(filepath);
+ fs::path filepath = request.params[0].get_str();
+ filepath = fs::absolute(filepath);
/* Prevent arbitrary files from being overwritten. There have been reports
* that users have overwritten wallet files this way:
* https://github.com/bitcoin/bitcoin/issues/9934
* It may also avoid other security issues.
*/
- if (boost::filesystem::exists(filepath)) {
+ if (fs::exists(filepath)) {
throw JSONRPCError(RPC_INVALID_PARAMETER, filepath.string() + " already exists. If you are sure this is what you want, move it out of the way first");
}