only return non-deleted object

This commit is contained in:
CJ Cobb
2022-03-15 12:01:23 -04:00
committed by CJ Cobb
parent 7c6979ae57
commit f41bfa3715

View File

@@ -138,6 +138,7 @@ doLedgerData(Context const& context)
for (size_t i = 0; i < objs.size(); ++i)
{
auto&& obj = objs[i];
if (obj.size())
results.push_back({std::move(keys[i]), std::move(obj)});
}
if (*diffCursor > lgrInfo.seq)