1
0
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:
matejcik 2018-11-12 12:03:52 +01:00
parent 4f153b5fd0
commit 0fd94f6bee

View File

@ -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")