File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -2614,7 +2614,8 @@ template PrecomputedTransactionData::PrecomputedTransactionData(const CTransacti
2614
2614
template PrecomputedTransactionData::PrecomputedTransactionData(const CMutableTransaction& txTo);
2615
2615
2616
2616
PrecomputedTransactionData::PrecomputedTransactionData (const uint256& hash_genesis_block)
2617
- : m_tapsighash_hasher(CHashWriter(HASHER_TAPSIGHASH_ELEMENTS) << hash_genesis_block << hash_genesis_block) {}
2617
+ : m_hash_genesis_block(hash_genesis_block)
2618
+ , m_tapsighash_hasher(CHashWriter(HASHER_TAPSIGHASH_ELEMENTS) << hash_genesis_block << hash_genesis_block) {}
2618
2619
2619
2620
static bool HandleMissingData (MissingDataBehavior mdb)
2620
2621
{
Original file line number Diff line number Diff line change @@ -195,6 +195,7 @@ struct PrecomputedTransactionData
195
195
bool m_spent_outputs_ready = false ;
196
196
197
197
// ! ELEMENTS: parent genesis hash
198
+ const uint256 m_hash_genesis_block;
198
199
CHashWriter m_tapsighash_hasher;
199
200
200
201
explicit PrecomputedTransactionData (const uint256& hash_genesis_block);
You can’t perform that action at this time.
0 commit comments