MCPcopy Create free account
hub / github.com/ElementsProject/elements / BIP341_sha_prevouts

Function BIP341_sha_prevouts

test/functional/test_framework/script.py:916–917  ·  view source on GitHub ↗
(txTo)

Source from the content-addressed store, hash-verified

914 self.assertEqual(CScriptNum.decode(CScriptNum.encode(CScriptNum(value))), value)
915
916def BIP341_sha_prevouts(txTo):
917 return sha256(b"".join(i.prevout.serialize() for i in txTo.vin))
918
919def BIP341_sha_amounts(spent_utxos):
920 return sha256(b"".join(u.nAsset.serialize() + u.nValue.serialize() for u in spent_utxos))

Callers 2

gen_test_vectorsMethod · 0.90
TaprootSignatureMsgFunction · 0.85

Calls 3

sha256Function · 0.70
joinMethod · 0.45
serializeMethod · 0.45

Tested by

no test coverage detected