Skip to content

Commit

Permalink
fix: minOut too high to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
chef-eric committed Feb 13, 2025
1 parent 1239412 commit cd22caf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/ton/src/views/TONSwap/SwapForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const SwapForm = () => {
return
}
await swap({
minOut: formattedAmounts[Field.OUTPUT] ?? '0.01',
minOut: '0.01',
amount0: formattedAmounts[Field.INPUT] ?? '0',
token0: inputCurrency,
token1: outputCurrency,
Expand Down

0 comments on commit cd22caf

Please sign in to comment.