From 2c35a93b3cc19dc71d5664f9f61c24a04f419e35 Mon Sep 17 00:00:00 2001 From: Pieter Wuille Date: Wed, 1 Dec 2021 14:40:25 -0500 Subject: Generalize/simplify VectorReader into SpanReader --- src/signet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/signet.cpp') diff --git a/src/signet.cpp b/src/signet.cpp index aafd1999ee..d74a6ef05a 100644 --- a/src/signet.cpp +++ b/src/signet.cpp @@ -98,7 +98,7 @@ std::optional SignetTxs::Create(const CBlock& block, const CScript& c // no signet solution -- allow this to support OP_TRUE as trivial block challenge } else { try { - VectorReader v(SER_NETWORK, INIT_PROTO_VERSION, signet_solution, 0); + SpanReader v{SER_NETWORK, INIT_PROTO_VERSION, signet_solution, 0}; v >> tx_spending.vin[0].scriptSig; v >> tx_spending.vin[0].scriptWitness.stack; if (!v.empty()) return std::nullopt; // extraneous data encountered -- cgit v1.2.3