From 58e8cdf4a097cd80802db6208e3aec26a84f9db7 Mon Sep 17 00:00:00 2001 From: svost Date: Tue, 12 Apr 2016 11:35:40 +0300 Subject: [PATCH] Cleanup namespaces --- src/walletdb.cpp | 42 +++++++++++++++++------------------------- 1 files changed, 17 insertions(+), 25 deletions(-) diff --git a/src/walletdb.cpp b/src/walletdb.cpp index 67510ca..a71ee4f 100644 --- a/src/walletdb.cpp +++ b/src/walletdb.cpp @@ -12,16 +12,8 @@ #include #include -#include - -#include -#include -#include -#include using namespace std; -using namespace boost; - static uint64_t nAccountingEntryNumber = 0; extern bool fWalletUnlockMintOnly; @@ -57,7 +49,7 @@ bool CWalletDB::WriteAccount(const string& strAccount, const CAccount& account) bool CWalletDB::WriteAccountingEntry(const uint64_t nAccEntryNum, const CAccountingEntry& acentry) { - return Write(std::make_tuple(string("acentry"), acentry.strAccount, nAccEntryNum), acentry); + return Write(make_tuple(string("acentry"), acentry.strAccount, nAccEntryNum), acentry); } bool CWalletDB::WriteAccountingEntry(const CAccountingEntry& acentry) @@ -90,7 +82,7 @@ void CWalletDB::ListAccountCreditDebit(const string& strAccount, list= 104000 - filesystem::copy_file(pathSrc, pathDest, filesystem::copy_option::overwrite_if_exists); + boost::filesystem::copy_file(pathSrc, pathDest, boost::filesystem::copy_option::overwrite_if_exists); #else - filesystem::copy_file(pathSrc, pathDest); + boost::filesystem::copy_file(pathSrc, pathDest); #endif printf("copied wallet.dat to %s\n", pathDest.string().c_str()); return true; - } catch(const filesystem::filesystem_error &e) { + } catch(const boost::filesystem::filesystem_error &e) { printf("error copying wallet.dat to %s - %s\n", pathDest.string().c_str(), e.what()); return false; } @@ -876,19 +868,19 @@ bool ImportWallet(CWallet *pwallet, const string& strLocation) // read through input file checking and importing keys into wallet. while (file.good()) { - std::string line; - std::getline(file, line); + string line; + getline(file, line); if (line.empty() || line[0] == '#') continue; // Skip comments and empty lines - std::vector vstr; + vector vstr; istringstream iss(line); copy(istream_iterator(iss), istream_iterator(), back_inserter(vstr)); if (vstr.size() < 2) continue; int64_t nTime = DecodeDumpTime(vstr[1]); - std::string strLabel; + string strLabel; bool fLabel = true; for (unsigned int nStr = 2; nStr < vstr.size(); nStr++) { if (vstr[nStr].compare(0,1, "#") == 0) @@ -950,7 +942,7 @@ bool ImportWallet(CWallet *pwallet, const string& strLocation) if (fLabel) pwallet->SetAddressBookName(addr, strLabel); - nTimeBegin = std::min(nTimeBegin, nTime); + nTimeBegin = min(nTimeBegin, nTime); } file.close(); @@ -970,7 +962,7 @@ bool ImportWallet(CWallet *pwallet, const string& strLocation) // // Try to (very carefully!) recover wallet.dat if there is a problem. // -bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename, bool fOnlyKeys) +bool CWalletDB::Recover(CDBEnv& dbenv, string filename, bool fOnlyKeys) { // Recovery procedure: // move wallet.dat to wallet.timestamp.bak @@ -980,7 +972,7 @@ bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename, bool fOnlyKeys) // Set -rescan so any missing transactions will be // found. int64_t now = GetTime(); - std::string newFilename = strprintf("wallet.%" PRId64 ".bak", now); + string newFilename = strprintf("wallet.%" PRId64 ".bak", now); int result = dbenv.dbenv.dbrename(NULL, filename.c_str(), NULL, newFilename.c_str(), DB_AUTO_COMMIT); @@ -992,7 +984,7 @@ bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename, bool fOnlyKeys) return false; } - std::vector salvagedData; + vector salvagedData; bool allOK = dbenv.Salvage(newFilename, true, salvagedData); if (salvagedData.empty()) { @@ -1048,7 +1040,7 @@ bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename, bool fOnlyKeys) return fSuccess; } -bool CWalletDB::Recover(CDBEnv& dbenv, std::string filename) +bool CWalletDB::Recover(CDBEnv& dbenv, string filename) { return CWalletDB::Recover(dbenv, filename, false); } -- 1.7.1