Skip to content

Commit

Permalink
Update FlowUtils.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholaspai committed Feb 8, 2024
1 parent 696a9cb commit ccd2e40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/FlowUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export function validateFillForDeposit(
}

// If fill is a slow fill request, then deposit must be a v3 deposit or return false.
if (isSlowFillRequest(fill) && !isV2Fill(fill) && isV3Deposit(deposit)) {
if (isSlowFillRequest(fill) && isV3Deposit(deposit)) {
return V3_DEPOSIT_COMPARISON_KEYS.every((key) => {
if (fillFieldsToIgnore.includes(key)) {
return true;
Expand Down

0 comments on commit ccd2e40

Please sign in to comment.