diff options
author | TheCharlatan <seb.kung@gmail.com> | 2022-02-15 12:27:01 +0100 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2022-02-15 12:27:08 +0100 |
commit | d4b3483cece9c27d58e4026df35725655ce06cf5 (patch) | |
tree | 413b4843168b60ae0837b323e892fc387ce0ad25 /src/primitives | |
parent | 48725e64fbfb85200dd2226386fbf1cfc8fe6c1f (diff) |
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.h | 2 |
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> |