Remove further usages of int(int_timestamp)

This commit is contained in:
Matthias
2021-07-05 19:51:14 +02:00
parent 1682578a39
commit 10998eb0fa
3 changed files with 5 additions and 5 deletions

View File

@@ -89,7 +89,7 @@ class AgeFilter(IPairList):
if len(daily_candles) >= self._min_days_listed:
# We have fetched at least the minimum required number of daily candles
# Add to cache, store the time we last checked this symbol
self._symbolsChecked[pair] = int(arrow.utcnow().int_timestamp) * 1000
self._symbolsChecked[pair] = arrow.utcnow().int_timestamp * 1000
return True
else:
self.log_once(f"Removed {pair} from whitelist, because age "