diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index 48e457f1e..9a07020ad 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -1719,7 +1719,7 @@ class FreqtradeBot(LoggingMixin): trade.update_fee(fee_cost, fee_currency, fee_rate, order.get('side', '')) if not isclose(amount, order_amount, abs_tol=constants.MATH_CLOSE_PREC): - # * Leverage could be a cause for this warning, leverage hasn't been thoroughly tested + # * Leverage could be a cause for this warning logger.warning(f"Amount {amount} does not match amount {trade.amount}") raise DependencyException("Half bought? Amounts don't match")