remove unused offers code

This commit is contained in:
CJ Cobb
2021-08-06 12:32:06 -04:00
parent 56e81eb1d8
commit ea5f9162b7
11 changed files with 16 additions and 83 deletions

View File

@@ -253,10 +253,7 @@ TEST(BackendTest, Basic)
backend->writeLedgerObject(
std::move(std::string{accountIndexBlob}),
lgrInfoNext.seq,
std::move(std::string{accountBlob}),
true,
false,
{});
std::move(std::string{accountBlob}));
ASSERT_TRUE(backend->finishWrites(lgrInfoNext.seq));
}
@@ -324,10 +321,7 @@ TEST(BackendTest, Basic)
backend->writeLedgerObject(
std::move(std::string{accountIndexBlob}),
lgrInfoNext.seq,
std::move(std::string{accountBlob}),
true,
false,
{});
std::move(std::string{accountBlob}));
ASSERT_TRUE(backend->finishWrites(lgrInfoNext.seq));
}
@@ -474,10 +468,7 @@ TEST(BackendTest, Basic)
backend->writeLedgerObject(
std::move(key),
lgrInfo.seq,
std::move(obj),
true,
false,
std::move(bookDir));
std::move(obj));
}
backend->writeAccountTransactions(std::move(accountTx));