1
0
mirror of https://github.com/bitcoin/bips.git synced 2026-02-23 15:38:22 +00:00

[BIP-119] Complete fragmented sentence

Co-authored-by: flack <flack@contentcontrol-berlin.de>
This commit is contained in:
Jeremy Rubin
2022-01-12 09:53:55 -08:00
committed by GitHub
parent 9f642244b9
commit 526e9797a7

View File

@@ -171,7 +171,9 @@ Where
bool CheckDefaultCheckTemplateVerifyHash(const std::vector<unsigned char>& hash) {
// note: for anti-DoS, a real implementation *must* cache parts of this computation
// to avoid quadratic hashing DoS, including
// to avoid quadratic hashing DoS all variable length computations must be precomputed
// including hashes of the scriptsigs, sequences, and outputs. See the section
// "Denial of Service and Validation Costs" below.
return GetDefaultCheckTemplateVerifyHash(current_tx, current_input_index) == uint256(hash);
}