fix(infra): simplify transaction processing validation by removing removed transactions check

This commit is contained in:
Stevan Freeborn
2026-03-12 17:03:07 -05:00
parent 66f4cd2959
commit f0c63c7ded
2 changed files with 2 additions and 3 deletions
@@ -86,7 +86,6 @@ internal sealed class PlaidTransactionProcessor : IPlaidTransactionProcessor
);
return numAdded == syncResponse.Added.Count &&
numModified == syncResponse.Modified.Count &&
numRemoved == syncResponse.Removed.Count;
numModified == syncResponse.Modified.Count;
}
}