diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-11-27 23:12:41 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-11-27 23:12:41 +0000 |
commit | 84d7c981dc52cc738053f9ec48648ab6fbf9311b (patch) | |
tree | 79d5c980d651069e8828c8a4c31218047bf9a339 /db.cpp | |
parent | 24324d83e8d9f0b9403ca1c333b594b77eaefb4c (diff) |
added boost tuples to serialize.h
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@192 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'db.cpp')
-rw-r--r-- | db.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -592,7 +592,7 @@ bool CWalletDB::WriteAccount(const string& strAccount, const CAccount& account) bool CWalletDB::WriteAccountingEntry(const string& strAccount, const CAccountingEntry& acentry) { - return Write(make_pair(string("acentry"), make_pair(strAccount, ++nAccountingEntryNumber)), acentry); + return Write(make_tuple(string("acentry"), strAccount, ++nAccountingEntryNumber), acentry); } int64 CWalletDB::GetAccountCreditDebit(const string& strAccount) @@ -608,7 +608,7 @@ int64 CWalletDB::GetAccountCreditDebit(const string& strAccount) // Read next record CDataStream ssKey; if (fFlags == DB_SET_RANGE) - ssKey << make_pair(string("acentry"), make_pair(strAccount, uint64(0))); + ssKey << make_tuple(string("acentry"), strAccount, uint64(0)); CDataStream ssValue; int ret = ReadAtCursor(pcursor, ssKey, ssValue, fFlags); fFlags = DB_NEXT; |