10 lines
531 B
Python
10 lines
531 B
Python
from app.electrum.scripthash import address_to_scripthash
|
|||
|
|
|
||
|
|
|
||
|
|
def test_matches_known_mainnet_vector():
|
||
|
|
# Ground truth: scriptPubKey "0014a195473740aea3b4df1690fbdcb51243fe4e7a20" of a real
|
||
|
|
# confirmed mainnet output to this address (txid 1ebd0219...b0d48a, vout 1), cross-checked
|
||
|
|
# against the Electrum server's own listunspent for this scripthash.
|
||
|
|
address = "plm1q5x25wd6q463mfhckjraaedgjg0lyu73qfcj43n"
|
||
|
|
assert address_to_scripthash(address) == "5b7744e34b1d6ee3ae6eef7e1ce82aa4c28ff13f10d4aa905640c722c9249111"
|