We can actually call recalc_open_trade_value less since it's being called eventually anyway.

This commit is contained in:
Reigo Reinmets 2021-12-26 20:09:18 +02:00
parent bd5520bee2
commit bc8fc3ab09

View File

@ -1370,7 +1370,6 @@ class FreqtradeBot(LoggingMixin):
logger.info(f"Updating order from exchange: {order}")
trade.update_order(order)
trade.recalc_trade_from_orders()
if self.exchange.check_order_canceled_empty(order):
# Trade has been cancelled on exchange
@ -1384,7 +1383,6 @@ class FreqtradeBot(LoggingMixin):
abs_tol=constants.MATH_CLOSE_PREC):
order['amount'] = new_amount
order.pop('filled', None)
trade.recalc_open_trade_value()
except DependencyException as exception:
logger.warning("Could not update trade amount: %s", exception)