From 1f6ca29bbfe63d916f5c43193cef14517b65dc4d Mon Sep 17 00:00:00 2001 From: Matthias Date: Wed, 30 Mar 2022 19:38:25 +0200 Subject: [PATCH] Update comment --- freqtrade/freqtradebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")