fix: Support deleted object in ledger_entry (#1483)

Fixes #1306
This commit is contained in:
Zhiyuan Wang
2024-07-15 13:07:09 -04:00
committed by GitHub
parent d6598f30f1
commit e16a9510f1
7 changed files with 405 additions and 4 deletions

View File

@@ -154,6 +154,13 @@ struct MockBackend : public BackendInterface {
(const, override)
);
MOCK_METHOD(
std::optional<std::uint32_t>,
doFetchLedgerObjectSeq,
(ripple::uint256 const&, std::uint32_t const, boost::asio::yield_context),
(const, override)
);
MOCK_METHOD(
std::vector<LedgerObject>,
fetchLedgerDiff,