common: apply overrides for Auxilium

properly fixes #723
closes #724
pull/758/head
matejcik 4 years ago
parent e75e77a5b2
commit 1c23c24059

File diff suppressed because it is too large Load Diff

@ -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
}
}
}

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

Loading…
Cancel
Save