diff options
author | Gregory Sanders <gsanders87@gmail.com> | 2022-04-25 11:58:42 -0400 |
---|---|---|
committer | Gregory Sanders <gsanders87@gmail.com> | 2022-04-25 11:58:42 -0400 |
commit | df08c23f0164b3e4b0df7d43462924f90a245237 (patch) | |
tree | 747de6315ec359a9e7cb439f7aa629d20fccdc8d /src | |
parent | e88a52e9a2fda971d34425bb80e42ad2d6623d68 (diff) |
Precomputed hashes are note #16 in BIP341
Diffstat (limited to 'src')
-rw-r--r-- | src/script/interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script/interpreter.h b/src/script/interpreter.h index fbd904fb7b..adf454aa15 100644 --- a/src/script/interpreter.h +++ b/src/script/interpreter.h @@ -151,7 +151,7 @@ bool CheckSignatureEncoding(const std::vector<unsigned char> &vchSig, unsigned i struct PrecomputedTransactionData { // BIP341 precomputed data. - // These are single-SHA256, see https://github.com/bitcoin/bips/blob/master/bip-0341.mediawiki#cite_note-15. + // These are single-SHA256, see https://github.com/bitcoin/bips/blob/master/bip-0341.mediawiki#cite_note-16. uint256 m_prevouts_single_hash; uint256 m_sequences_single_hash; uint256 m_outputs_single_hash; |