Reformat if condition

This commit is contained in:
Matthias 2020-02-25 20:22:59 +01:00
parent d44f6651c4
commit a030ce9348
1 changed files with 4 additions and 2 deletions

View File

@ -847,7 +847,8 @@ class FreqtradeBot:
self.wallets.update()
continue
if (order['side'] == 'buy' and (order['status'] == 'canceled'
if (order['side'] == 'buy' and (
order['status'] == 'canceled'
or self._check_timed_out('buy', order)
or strategy_safe_wrapper(self.strategy.check_buy_timeout,
default_retval=False)(pair=trade.pair,
@ -859,7 +860,8 @@ class FreqtradeBot:
order_type = self.strategy.order_types['buy']
self._notify_buy_cancel(trade, order_type)
elif (order['side'] == 'sell' and (order['status'] == 'canceled'
elif (order['side'] == 'sell' and (
order['status'] == 'canceled'
or self._check_timed_out('sell', order)
or strategy_safe_wrapper(self.strategy.check_sell_timeout,
default_retval=False)(pair=trade.pair,