diff --git a/piker/brokers/kucoin.py b/piker/brokers/kucoin.py index 6692d7f7..766cee62 100644 --- a/piker/brokers/kucoin.py +++ b/piker/brokers/kucoin.py @@ -302,7 +302,7 @@ class Client: pattern: str, limit: int = 30, ) -> dict[str, KucoinMktPair]: - data = await self._get_pairs() + data = await self.cache_pairs() matches = fuzzy.extractBests( pattern, data, score_cutoff=35, limit=limit)