mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
tools/support.py: fix bug when token collides with coin
This commit is contained in:
parent
4f153b5fd0
commit
0fd94f6bee
@ -271,7 +271,8 @@ def check(ignore_tokens, ignore_missing):
|
||||
print(f"{coin['key']} - {coin['name']}")
|
||||
|
||||
supported_dups = find_supported_duplicate_tokens(coins_dict)
|
||||
for coin in supported_dups:
|
||||
for key in supported_dups:
|
||||
coin = coins_dict[key]
|
||||
checks_ok = False
|
||||
print(f"Token {coin['key']} ({coin['name']}) is duplicate but supported")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user