If we don't have a ledger we should have, make sure we mark it missing so the

fetch engine will work on it.
This commit is contained in:
JoelKatz
2013-02-27 14:18:07 -08:00
parent bd3d28c2fa
commit bc21139198
4 changed files with 34 additions and 13 deletions

View File

@@ -164,7 +164,7 @@ public:
Ledger::ref getValidatedLedger() { return mLedgerMaster->getValidatedLedger(); }
Ledger::ref getCurrentLedger() { return mLedgerMaster->getCurrentLedger(); }
Ledger::pointer getLedgerByHash(const uint256& hash) { return mLedgerMaster->getLedgerByHash(hash); }
Ledger::pointer getLedgerBySeq(const uint32 seq) { return mLedgerMaster->getLedgerBySeq(seq); }
Ledger::pointer getLedgerBySeq(const uint32 seq);
uint256 getClosedLedgerHash() { return mLedgerMaster->getClosedLedger()->getHash(); }