fixed typo in false statement

This commit is contained in:
Yazeed Al Oyoun 2020-01-25 20:53:02 +01:00 committed by Matthias
parent f8db7f1709
commit 328a9ffafd

View File

@ -429,7 +429,7 @@ class FreqtradeBot:
logger.info('bids to ask delta DOES satisfy condition.')
return True
else:
logger.info('bids to ask delta DOES NOT satisfy condition.')
logger.info(f"bids to ask delta for {pair} does not satisfy condition.")
return False
def execute_buy(self, pair: str, stake_amount: float, price: Optional[float] = None) -> bool: