From 44a83b9122317c11174df2590c436ad2ae5f6735 Mon Sep 17 00:00:00 2001 From: Vijay Date: Sun, 8 Sep 2024 18:06:51 +0530 Subject: [PATCH] 24339 --- src/rpc/util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/util.cpp b/src/rpc/util.cpp index 415276c8bb76fe..29d48cac63a196 100644 --- a/src/rpc/util.cpp +++ b/src/rpc/util.cpp @@ -22,7 +22,7 @@ std::string GetAllOutputTypes() { std::vector ret; using U = std::underlying_type::type; - for (U i = (U)TxoutType::NONSTANDARD; i <= (U)TxoutType::WITNESS_UNKNOWN; ++i) { + for (U i = (U)TxoutType::NONSTANDARD; i <= (U)TxoutType::NULL_DATA; ++i) { ret.emplace_back(GetTxnOutputType(static_cast(i))); } return Join(ret, ", ");