common/tools: add segwit sanity checks

pull/928/head
Pavol Rusnak 4 years ago
parent e2199f6099
commit 9d116598d0
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -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…
Cancel
Save