tests fixed

This commit is contained in:
misagh
2018-12-09 16:22:21 +01:00
parent 663e33d2ef
commit 866b7aee8e
2 changed files with 22 additions and 9 deletions

View File

@@ -403,13 +403,13 @@ class FreqtradeBot(object):
' zero amount is fulfilled.',
order_tif, order_type, pair_s, order_status, self.exchange.name)
return False
else: # the order is partially fulfilled
else: # the order is partially fulfilled
logger.warning('Buy %s order with time in force %s for %s is %s by %s.'
' %s amount fulfilled out of %s (%s remaining which is canceled).',
order_tif, order_type, pair_s, order_status, self.exchange.name,
order['filled'], order['amount'], order['remaining']
)
return False
self.rpc.send_msg({
'type': RPCMessageType.BUY_NOTIFICATION,