|
|
|
@ -22,8 +22,6 @@
@@ -22,8 +22,6 @@
|
|
|
|
|
#include <boost/foreach.hpp> |
|
|
|
|
#include <boost/thread.hpp> |
|
|
|
|
|
|
|
|
|
static uint64_t nAccountingEntryNumber = 0; |
|
|
|
|
|
|
|
|
|
static std::atomic<unsigned int> nWalletDBUpdateCounter; |
|
|
|
|
|
|
|
|
|
//
|
|
|
|
@ -180,11 +178,6 @@ bool CWalletDB::WriteAccountingEntry(const uint64_t nAccEntryNum, const CAccount
@@ -180,11 +178,6 @@ bool CWalletDB::WriteAccountingEntry(const uint64_t nAccEntryNum, const CAccount
|
|
|
|
|
return WriteIC(std::make_pair(std::string("acentry"), std::make_pair(acentry.strAccount, nAccEntryNum)), acentry); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
bool CWalletDB::WriteAccountingEntry_Backend(const CAccountingEntry& acentry) |
|
|
|
|
{ |
|
|
|
|
return WriteAccountingEntry(++nAccountingEntryNumber, acentry); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
CAmount CWalletDB::GetAccountCreditDebit(const std::string& strAccount) |
|
|
|
|
{ |
|
|
|
|
std::list<CAccountingEntry> entries; |
|
|
|
@ -321,8 +314,9 @@ ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue,
@@ -321,8 +314,9 @@ ReadKeyValue(CWallet* pwallet, CDataStream& ssKey, CDataStream& ssValue,
|
|
|
|
|
ssKey >> strAccount; |
|
|
|
|
uint64_t nNumber; |
|
|
|
|
ssKey >> nNumber; |
|
|
|
|
if (nNumber > nAccountingEntryNumber) |
|
|
|
|
nAccountingEntryNumber = nNumber; |
|
|
|
|
if (nNumber > pwallet->nAccountingEntryNumber) { |
|
|
|
|
pwallet->nAccountingEntryNumber = nNumber; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!wss.fAnyUnordered) |
|
|
|
|
{ |
|
|
|
|