From d4b3483cece9c27d58e4026df35725655ce06cf5 Mon Sep 17 00:00:00 2001 From: TheCharlatan Date: Tue, 15 Feb 2022 12:27:01 +0100 Subject: Primitives: Correct CTransaction deserialization docstring Since https://github.com/bitcoin/bitcoin/pull/8589 CTxWitness was removed and instead replaced with CScriptWitness inside each CTxIn. --- src/primitives/transaction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/primitives') 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 vin * - std::vector vout * - if (flags & 1): - * - CTxWitness wit; + * - CScriptWitness scriptWitness; (deserialized into CTxIn) * - uint32_t nLockTime */ template -- cgit v1.2.3