From 2935b5ddb16f2bf1db0508eddb2605b258158267 Mon Sep 17 00:00:00 2001 From: jhuntbach-bc Date: Mon, 14 Oct 2024 11:04:27 +0100 Subject: [PATCH] remove sol flag --- scripts/build-lists.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-lists.py b/scripts/build-lists.py index d009f57..124e02d 100644 --- a/scripts/build-lists.py +++ b/scripts/build-lists.py @@ -159,7 +159,7 @@ def build_tokens_list(network, fill_from_coingecko=False): tokens = list(set(tokens) | set(current_tokens)) # Optionally, fetch tokens from CoinGecko, adding to the current list - if fill_from_coingecko and network.symbol == "SOL": + if fill_from_coingecko: print(f"Fetching missing tokens from CoinGecko") new_tokens = fetch_missing_tokens_for_network(network, tokens) print(f"Adding {len(new_tokens)} tokens fetched from CoinGecko")