Remove state order on created, rely on sequence order

This commit is contained in:
Jake Barnby 2025-09-16 21:13:41 +12:00
parent fb65d7a965
commit b38b2bba0c
No known key found for this signature in database
GPG key ID: C437A8CC85B96E9C

View file

@ -31,7 +31,6 @@ class TransactionState
// Fetch operations ordered by sequence to replay in exact order
$operations = $this->dbForProject->find('transactionLogs', [
Query::equal('transactionInternalId', [$transaction->getSequence()]),
Query::orderAsc('$createdAt'), // Ensure operations are processed in order
]);
$state = [];