1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-16 11:28:14 +00:00

support: fix duplicate checking bug, update data after merge

This commit is contained in:
matejcik 2018-08-24 17:11:00 +02:00
parent 43eaaba028
commit 334c5eed32
3 changed files with 21 additions and 4 deletions

View File

@ -12641,6 +12641,21 @@
"MyEtherWallet": "https://www.myetherwallet.com"
}
},
"eth:ATH": {
"links": {
"Homepage": "https://atheios.com"
},
"marketcap_usd": 0,
"name": "Atheios",
"shortcut": "ATH",
"t1_enabled": "soon",
"t2_enabled": "soon",
"type": "coin",
"wallet": {
"MyCrypto": "https://mycrypto.com",
"MyEtherWallet": "https://www.myetherwallet.com"
}
},
"eth:CLO": {
"links": {
"Homepage": "https://callisto.network"
@ -13116,8 +13131,8 @@
"marketcap_usd": 168706565383,
"t1_coins": 635,
"t2_coins": 634,
"total_marketcap_usd": 210960655566,
"updated_at": 1535122394,
"updated_at_readable": "Fri Aug 24 16:53:14 2018"
"total_marketcap_usd": 210612300355,
"updated_at": 1535123434,
"updated_at_readable": "Fri Aug 24 17:10:34 2018"
}
}

View File

@ -678,6 +678,7 @@
"erc20:ubq:QWARK": "1.6.2",
"erc20:ubq:RICKS": "1.6.2",
"eth:AKA": "soon",
"eth:ATH": "soon",
"eth:CLO": "1.6.2",
"eth:EGEM": "1.6.2",
"eth:ELLA": "1.6.2",
@ -1487,6 +1488,7 @@
"erc20:ubq:QWARK": "2.0.7",
"erc20:ubq:RICKS": "2.0.7",
"eth:AKA": "soon",
"eth:ATH": "soon",
"eth:CLO": "2.0.7",
"eth:EGEM": "2.0.7",
"eth:ELLA": "2.0.7",

View File

@ -129,7 +129,7 @@ def find_unsupported_coins(coins_dict):
result[device] = []
for key, coin in coins_dict.items():
if coin.get("duplicate"):
if coin.get("duplicate") and coin_info.is_token(coin):
continue
if key not in support_set:
result[device].append(coin)