mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-23 23:08:14 +00:00
common/tools: add segwit sanity checks
This commit is contained in:
parent
e2199f6099
commit
9d116598d0
@ -183,6 +183,17 @@ def validate_btc(coin):
|
||||
if not coin["max_address_length"] >= coin["min_address_length"]:
|
||||
errors.append("max address length must not be smaller than min address length")
|
||||
|
||||
if coin["segwit"]:
|
||||
if coin["bech32_prefix"] is None:
|
||||
errors.append("bech32_prefix must be defined for segwit-enabled coin")
|
||||
if coin["xpub_magic_segwit_p2sh"] is None:
|
||||
errors.append("xpub_magic_segwit_p2sh must be defined for segwit-enabled coin")
|
||||
else:
|
||||
if coin["bech32_prefix"] is not None:
|
||||
errors.append("bech32_prefix must not be defined for segwit-disabled coin")
|
||||
if coin["xpub_magic_segwit_p2sh"] is not None:
|
||||
errors.append("xpub_magic_segwit_p2sh must not be defined for segwit-disabled coin")
|
||||
|
||||
for bc in coin["bitcore"] + coin["blockbook"]:
|
||||
if not bc.startswith("https://"):
|
||||
errors.append("make sure URLs start with https://")
|
||||
|
Loading…
Reference in New Issue
Block a user