diff --git a/bip-0119.mediawiki b/bip-0119.mediawiki index 7f5159cb..88e52bf5 100644 --- a/bip-0119.mediawiki +++ b/bip-0119.mediawiki @@ -203,7 +203,18 @@ Where return GetDefaultCheckTemplateVerifyHash(current_tx, current_input_index) == uint256(hash); } -The hash is computed as follows: +The hash is computed as follows, where the outputs_hash and sequences_hash are computed as defined in BIP-341. + + /** Compute the (single) SHA256 of the concatenation of all scriptSigs in a tx. */ + template + uint256 GetScriptSigsSHA256(const T& txTo) + { + CHashWriter ss(SER_GETHASH, 0); + for (const auto& in : txTo.vin) { + ss << in.scriptSig; + } + return ss.GetSHA256(); + } // not DoS safe, for reference/testing! uint256 GetDefaultCheckTemplateVerifyHash(const CTransaction& tx, uint32_t input_index) { return GetDefaultCheckTemplateVerifyHash(tx, GetOutputsSHA256(tx), GetSequenceSHA256(tx), input_index); @@ -244,6 +255,21 @@ The hash is computed as follows: return h.GetSHA256(); } +In python, this can be written as (but note this implementation is DoS-able). + + def get_default_check_template_hash(self, nIn): + r = b"" + r += struct.pack("