Primitives: Correct CTransaction deserialization docstring

Since https://github.com/bitcoin/bitcoin/pull/8589 CTxWitness was
removed and instead replaced with CScriptWitness inside each CTxIn.
This commit is contained in:
TheCharlatan 2022-02-15 12:27:01 +01:00
parent 48725e64fb
commit d4b3483cec
No known key found for this signature in database
GPG Key ID: 9B79B45691DB4173

View File

@ -181,7 +181,7 @@ struct CMutableTransaction;
* - std::vector<CTxIn> vin
* - std::vector<CTxOut> vout
* - if (flags & 1):
* - CTxWitness wit;
* - CScriptWitness scriptWitness; (deserialized into CTxIn)
* - uint32_t nLockTime
*/
template<typename Stream, typename TxType>