From 0a3a1d7eca64b30bf9f1440a8a4333b019605a36 Mon Sep 17 00:00:00 2001 From: Matthias Date: Tue, 20 May 2025 19:22:05 +0200 Subject: [PATCH] fix: remove unnecessary kraken workaround fixes "list-pairs" command for kraken. --- freqtrade/exchange/kraken.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/freqtrade/exchange/kraken.py b/freqtrade/exchange/kraken.py index d82725bbb..141ef039a 100644 --- a/freqtrade/exchange/kraken.py +++ b/freqtrade/exchange/kraken.py @@ -49,18 +49,6 @@ class Kraken(Exchange): return parent_check and market.get("darkpool", False) is False - def get_tickers( - self, - symbols: list[str] | None = None, - *, - cached: bool = False, - market_type: TradingMode | None = None, - ) -> Tickers: - # Only fetch tickers for current stake currency - # Otherwise the request for kraken becomes too large. - symbols = list(self.get_markets(quote_currencies=[self._config["stake_currency"]])) - return super().get_tickers(symbols=symbols, cached=cached, market_type=market_type) - def consolidate_balances(self, balances: CcxtBalances) -> CcxtBalances: """ Consolidate balances for the same currency.