mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-22 04:35:50 +00:00
remove unused offers code
This commit is contained in:
@@ -39,20 +39,15 @@ void
|
||||
BackendInterface::writeLedgerObject(
|
||||
std::string&& key,
|
||||
uint32_t seq,
|
||||
std::string&& blob,
|
||||
bool isCreated,
|
||||
bool isDeleted,
|
||||
std::optional<ripple::uint256>&& book) const
|
||||
std::string&& blob) const
|
||||
{
|
||||
assert(key.size() == sizeof(rippled::uint256));
|
||||
ripple::uint256 key256 = ripple::uint256::fromVoid(key.data());
|
||||
indexer_.addKey(std::move(key256));
|
||||
doWriteLedgerObject(
|
||||
std::move(key),
|
||||
seq,
|
||||
std::move(blob),
|
||||
isCreated,
|
||||
isDeleted,
|
||||
std::move(book));
|
||||
std::move(blob));
|
||||
}
|
||||
std::optional<LedgerRange>
|
||||
BackendInterface::hardFetchLedgerRangeNoThrow() const
|
||||
|
||||
Reference in New Issue
Block a user