Fix missing tx from account_tx (#1390)

Fix #1389
Since our selectAccountTxForward is no longer inclusive, we should adjust this place.
This commit is contained in:
cyan317
2024-05-03 10:34:52 +01:00
committed by GitHub
parent d5ed0cff77
commit 98ef83d470

View File

@@ -172,11 +172,6 @@ public:
if (--numRows == 0) {
LOG(log_.debug()) << "Setting cursor";
cursor = data;
// forward queries by ledger/tx sequence `>=`
// so we have to advance the index by one
if (forward)
++cursor->transactionIndex;
}
}