Merge branch 'develop' into db_keep_orders

This commit is contained in:
Matthias 2020-08-23 19:14:57 +02:00
commit c3a367e4f0
1 changed files with 2 additions and 2 deletions

View File

@ -379,7 +379,7 @@ class FreqtradeBot:
rate = self._buy_rate_cache.get(pair)
# Check if cache has been invalidated
if rate:
logger.info(f"Using cached buy rate for {pair}.")
logger.debug(f"Using cached buy rate for {pair}.")
return rate
bid_strategy = self.config.get('bid_strategy', {})
@ -798,7 +798,7 @@ class FreqtradeBot:
rate = self._sell_rate_cache.get(pair)
# Check if cache has been invalidated
if rate:
logger.info(f"Using cached sell rate for {pair}.")
logger.debug(f"Using cached sell rate for {pair}.")
return rate
ask_strategy = self.config.get('ask_strategy', {})