diff options
| author | kenshi84 <kenshi84@protonmail.ch> | 2016-12-20 13:04:19 +0900 |
|---|---|---|
| committer | kenshi84 <kenshi84@protonmail.ch> | 2016-12-20 13:04:19 +0900 |
| commit | 2ac80075444ebac2feef59f98c912342a708606d (patch) | |
| tree | 3c91949940c438dea8c53b62ae5b1ee16c3f0ad1 /src/wallet | |
| parent | d1d6e27ab661f71d90fb6530db84d5a2b92550a8 (diff) | |
| download | monzero-core-2ac80075444ebac2feef59f98c912342a708606d.tar.gz monzero-core-2ac80075444ebac2feef59f98c912342a708606d.tar.xz monzero-core-2ac80075444ebac2feef59f98c912342a708606d.zip | |
also use portable serializer for boost_serialization_helper.h and net_node.inl, completely adandon boost/archive/binary_oarchive.hpp
Diffstat (limited to 'src/wallet')
| -rw-r--r-- | src/wallet/wallet2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index f22410563..e58c31156 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -2318,7 +2318,7 @@ void wallet2::load(const std::string& wallet_, const std::string& password) catch (...) { LOG_PRINT_L0("Failed to open portable binary, trying unportable"); - boost::filesystem::copy_file(m_wallet_file, m_wallet_file + ".old", boost::filesystem::copy_option::overwrite_if_exists); + boost::filesystem::copy_file(m_wallet_file, m_wallet_file + ".unportable", boost::filesystem::copy_option::overwrite_if_exists); iss.str(""); iss << cache_data; boost::archive::binary_iarchive ar(iss); @@ -2337,7 +2337,7 @@ void wallet2::load(const std::string& wallet_, const std::string& password) catch (...) { LOG_PRINT_L0("Failed to open portable binary, trying unportable"); - boost::filesystem::copy_file(m_wallet_file, m_wallet_file + ".old", boost::filesystem::copy_option::overwrite_if_exists); + boost::filesystem::copy_file(m_wallet_file, m_wallet_file + ".unportable", boost::filesystem::copy_option::overwrite_if_exists); iss.str(""); iss << buf; boost::archive::binary_iarchive ar(iss); |
