mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-18 13:17:55 +02:00
Merge 08ea835220 into merged_master (Bitcoin PR bitcoin/bitcoin#28583)
This commit is contained in:
commit
69492d27da
46 changed files with 165 additions and 164 deletions
|
|
@ -28,7 +28,7 @@ static inline CTransactionRef make_tx(const std::vector<CTransactionRef>& inputs
|
|||
tx.vin[i].prevout.n = 0;
|
||||
// Add a witness so wtxid != txid
|
||||
CScriptWitness witness;
|
||||
witness.stack.push_back(std::vector<unsigned char>(i + 10));
|
||||
witness.stack.emplace_back(i + 10);
|
||||
tx.witness.vtxinwit[i].scriptWitness = witness; // ELEMENTS
|
||||
}
|
||||
for (size_t i = 0; i < output_values.size(); ++i) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue