Small bugfixes.

This commit is contained in:
JoelKatz
2012-10-24 12:56:49 -07:00
parent b44ef50039
commit 806a025523
5 changed files with 22 additions and 21 deletions

View File

@@ -211,7 +211,7 @@ void Application::startNewLedger()
Ledger::pointer secondLedger = boost::make_shared<Ledger>(true, boost::ref(*firstLedger));
secondLedger->setClosed();
secondLedger->setAccepted();
mMasterLedger.pushLedger(secondLedger, boost::make_shared<Ledger>(true, boost::ref(*secondLedger)));
mMasterLedger.pushLedger(secondLedger, boost::make_shared<Ledger>(true, boost::ref(*secondLedger)), false);
assert(!!secondLedger->getAccountState(rootAddress));
mNetOps.setLastCloseTime(secondLedger->getCloseTimeNC());
}