Skip to content

Commit d4b3483

Browse files
committed
Primitives: Correct CTransaction deserialization docstring
Since bitcoin/bitcoin#8589 CTxWitness was removed and instead replaced with CScriptWitness inside each CTxIn.
1 parent 48725e6 commit d4b3483

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/primitives/transaction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ struct CMutableTransaction;
181181
* - std::vector<CTxIn> vin
182182
* - std::vector<CTxOut> vout
183183
* - if (flags & 1):
184-
* - CTxWitness wit;
184+
* - CScriptWitness scriptWitness; (deserialized into CTxIn)
185185
* - uint32_t nLockTime
186186
*/
187187
template<typename Stream, typename TxType>

0 commit comments

Comments
 (0)