typo corrected

This commit is contained in:
misagh
2018-11-26 18:28:13 +01:00
parent a80c984323
commit b2634e8e08
3 changed files with 3 additions and 3 deletions

View File

@@ -700,7 +700,7 @@ class FreqtradeBot(object):
logger.debug('Handling stoploss on exchange %s ...', trade)
order = self.exchange.get_order(trade.stoploss_order_id, trade.pair)
if order['status'] == 'closed':
trade.sell_reason = SellType.STOPLOSS_ON_EXCHNAGE.value
trade.sell_reason = SellType.STOPLOSS_ON_EXCHANGE.value
trade.update(order)
result = True
else: