diff --git a/freqtrade/exchange/exchange.py b/freqtrade/exchange/exchange.py index b3ff6890a..a2d1eb859 100644 --- a/freqtrade/exchange/exchange.py +++ b/freqtrade/exchange/exchange.py @@ -1769,7 +1769,7 @@ class Exchange: balances.pop("total", None) balances.pop("used", None) - self._log_exchange_response("fetch_balances", balances) + self._log_exchange_response("fetch_balance", balances) return balances except ccxt.DDoSProtection as e: raise DDosProtection(e) from e diff --git a/freqtrade/exchange/kraken.py b/freqtrade/exchange/kraken.py index d361b1337..1f8b3cc26 100644 --- a/freqtrade/exchange/kraken.py +++ b/freqtrade/exchange/kraken.py @@ -82,7 +82,7 @@ class Kraken(Exchange): balances.pop("free", None) balances.pop("total", None) balances.pop("used", None) - self._log_exchange_response("fetch_balances", balances) + self._log_exchange_response("fetch_balance", balances) # Consolidate balances balances = self.consolidate_balances(balances) @@ -104,7 +104,7 @@ class Kraken(Exchange): balances[bal]["used"] = sum(order[1] for order in order_list if order[0] == bal) balances[bal]["free"] = balances[bal]["total"] - balances[bal]["used"] - self._log_exchange_response("fetch_balances2", balances) + self._log_exchange_response("fetch_balance2", balances) return balances except ccxt.DDoSProtection as e: raise DDosProtection(e) from e