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