diff --git a/services/wallet/router.go b/services/wallet/router.go index bf1434dd6..8d4a6f4b7 100644 --- a/services/wallet/router.go +++ b/services/wallet/router.go @@ -555,6 +555,10 @@ func (r *Router) suggestedRoutes( continue } + if bonderFees.Cmp(maxAmountIn.ToInt()) >= 0 { + continue + } + gasLimit := uint64(0) if sendType.isTransfer() { gasLimit, err = bridge.EstimateGas(network, dest, token, amountIn)