1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

defs: ignore regtest in coins_details

This commit is contained in:
matejcik 2019-05-15 12:13:53 +02:00
parent 0a52b51a26
commit 5b4cc82e71

View File

@ -343,7 +343,7 @@ def check_missing_data(coins):
if len(coin.get("wallet", [])) == 0:
LOG.debug(f"{k}: Missing wallet")
if "Testnet" in coin["name"]:
if "Testnet" in coin["name"] or "Regtest" in coin["name"]:
LOG.debug(f"{k}: Hiding testnet")
hide = True