aboutsummaryrefslogtreecommitdiff
path: root/src/primitives
diff options
context:
space:
mode:
authorTheCharlatan <seb.kung@gmail.com>2022-02-15 12:27:01 +0100
committerTheCharlatan <seb.kung@gmail.com>2022-02-15 12:27:08 +0100
commitd4b3483cece9c27d58e4026df35725655ce06cf5 (patch)
tree413b4843168b60ae0837b323e892fc387ce0ad25 /src/primitives
parent48725e64fbfb85200dd2226386fbf1cfc8fe6c1f (diff)
downloadbitcoin-d4b3483cece9c27d58e4026df35725655ce06cf5.tar.xz
Primitives: Correct CTransaction deserialization docstring
Since https://github.com/bitcoin/bitcoin/pull/8589 CTxWitness was removed and instead replaced with CScriptWitness inside each CTxIn.
Diffstat (limited to 'src/primitives')
-rw-r--r--src/primitives/transaction.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/primitives/transaction.h b/src/primitives/transaction.h
index 6bf36ee854..30ca607dc4 100644
--- a/src/primitives/transaction.h
+++ b/src/primitives/transaction.h
@@ -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>