remove swaptrade limit [skip ci]
OmarHatem committed
Oct 3, 2025 at 13:38 UTC
efef498c3191e741804a153f660e2e77cbd8b320
1 file changed
-10
lib/view_model/exchange/exchange_view_model.dart
-10
@@ -702,16 +702,6 @@ abstract class ExchangeViewModelBase extends WalletChangeListenerViewModel with
702
continue;
703
} else {
704
try {
705
- if (provider is SwapTradeExchangeProvider) {
706
- final destinationAmount = (fiatConversionStore.prices[request.toCurrency] ?? 0.00) *
707
- (double.tryParse(request.toAmount) ?? 0.00);
708
- final sendingAmount = (fiatConversionStore.prices[request.fromCurrency] ?? 0.00) *
709
- (double.tryParse(request.fromAmount) ?? 0.00);
710
-
711
- if (destinationAmount > 5000 || sendingAmount > 5000) {
712
- continue;
713
- }
714
- }
705
tradeState = TradeIsCreating();
706
final trade = await provider.createTrade(
707
request: request,