Add CWallet::ReorderTransactions and use in accounting_tests.cpp

This commit is contained in:
Patrick Strateman
2016-09-09 19:21:44 -07:00
parent 59adc86680
commit d2e678d7d2
3 changed files with 8 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ GetResults(CWalletDB& walletdb, std::map<CAmount, CAccountingEntry>& results)
std::list<CAccountingEntry> aes;
results.clear();
BOOST_CHECK(walletdb.ReorderTransactions(pwalletMain) == DB_LOAD_OK);
BOOST_CHECK(pwalletMain->ReorderTransactions() == DB_LOAD_OK);
pwalletMain->ListAccountCreditDebit("", aes);
BOOST_FOREACH(CAccountingEntry& ae, aes)
{