aboutsummaryrefslogtreecommitdiff
path: root/src/walletdb.h
diff options
context:
space:
mode:
authorPhilip Kaufmann <phil.kaufmann@t-online.de>2014-09-16 15:18:33 +0200
committerPhilip Kaufmann <phil.kaufmann@t-online.de>2014-09-18 07:21:49 +0200
commit93f84d0417e8e1c590b405bde6e153b413bd43f2 (patch)
tree76845cdeb266c172ed97ddf1d81fcdffc1938cdd /src/walletdb.h
parent22d7e7014f2064fb9e52c634f68b3c5e965faec0 (diff)
downloadbitcoin-93f84d0417e8e1c590b405bde6e153b413bd43f2.tar.xz
cleanup class private and public areas in walletdb
- only code movement
Diffstat (limited to 'src/walletdb.h')
-rw-r--r--src/walletdb.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/walletdb.h b/src/walletdb.h
index 475d4fb96d..2c5b608f3d 100644
--- a/src/walletdb.h
+++ b/src/walletdb.h
@@ -78,10 +78,7 @@ public:
CWalletDB(const std::string& strFilename, const char* pszMode = "r+") : CDB(strFilename, pszMode)
{
}
-private:
- CWalletDB(const CWalletDB&);
- void operator=(const CWalletDB&);
-public:
+
bool WriteName(const std::string& strAddress, const std::string& strName);
bool EraseName(const std::string& strAddress);
@@ -119,19 +116,23 @@ public:
bool WriteDestData(const std::string &address, const std::string &key, const std::string &value);
/// Erase destination data tuple from wallet database
bool EraseDestData(const std::string &address, const std::string &key);
-private:
- bool WriteAccountingEntry(const uint64_t nAccEntryNum, const CAccountingEntry& acentry);
-public:
+
bool WriteAccountingEntry(const CAccountingEntry& acentry);
int64_t GetAccountCreditDebit(const std::string& strAccount);
void ListAccountCreditDebit(const std::string& strAccount, std::list<CAccountingEntry>& acentries);
- DBErrors ReorderTransactions(CWallet*);
+ DBErrors ReorderTransactions(CWallet* pwallet);
DBErrors LoadWallet(CWallet* pwallet);
DBErrors FindWalletTx(CWallet* pwallet, std::vector<uint256>& vTxHash, std::vector<CWalletTx>& vWtx);
DBErrors ZapWalletTx(CWallet* pwallet, std::vector<CWalletTx>& vWtx);
static bool Recover(CDBEnv& dbenv, std::string filename, bool fOnlyKeys);
static bool Recover(CDBEnv& dbenv, std::string filename);
+
+private:
+ CWalletDB(const CWalletDB&);
+ void operator=(const CWalletDB&);
+
+ bool WriteAccountingEntry(const uint64_t nAccEntryNum, const CAccountingEntry& acentry);
};
bool BackupWallet(const CWallet& wallet, const std::string& strDest);