aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-04-26 12:01:04 +0100
committerfanquake <fanquake@gmail.com>2022-04-26 12:01:20 +0100
commit30c1c6ed80c5a86cd7f42ce7a8c3587435c8f486 (patch)
tree0327c6a7be8aff05857a31533dce13676a8c9b26 /src
parentf436bfd126adaa64daba2e78016eb707e37eabce (diff)
parentdf08c23f0164b3e4b0df7d43462924f90a245237 (diff)
downloadbitcoin-30c1c6ed80c5a86cd7f42ce7a8c3587435c8f486.tar.xz
Merge bitcoin/bitcoin#24979: Precomputed hashes are note #16 in BIP341
df08c23f0164b3e4b0df7d43462924f90a245237 Precomputed hashes are note #16 in BIP341 (Gregory Sanders) Pull request description: Seems to have drifted one space ACKs for top commit: fanquake: ACK df08c23f0164b3e4b0df7d43462924f90a245237 Tree-SHA512: f0e959743f67ad4b46584f44305d27a89b52874d70091e004ec05dfd2f8c6481e9edceecb0af98f519ad3debb0c0bb26fa27f370545b6e15f366bd0af1158bab
Diffstat (limited to 'src')
-rw-r--r--src/script/interpreter.h2
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;