1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-21 23:18:13 +00:00

common: apply overrides for Auxilium

properly fixes #723
closes #724
This commit is contained in:
matejcik 2019-12-13 15:39:28 +01:00
parent e75e77a5b2
commit 1c23c24059
3 changed files with 650 additions and 645 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,4 @@
{
"bitcoin:DNR": {
"coinmarketcap_alias": "denarius-dnr"
},
"erc20:eth:BAT": {
"name": "Basic Attention Token"
},
@ -20,5 +17,13 @@
},
"nem:DIMTOK": {
"coinmarketcap_alias": "dimcoin"
},
"eth:AUX": {
"links": {
"Github": "https://github.com/auxiliumglobal"
},
"wallet": {
"MyEtherWallet": null
}
}
}

View File

@ -376,7 +376,7 @@ def finalize_wallets(coins):
for coin in coins.values():
wallets_list = [
dict(name=name, url=url) for name, url in coin["wallet"].items()
dict(name=name, url=url) for name, url in coin["wallet"].items() if url
]
wallets_list.sort(key=sort_key)
coin["wallet"] = wallets_list