From 10eb3a9faa977371facacee937b2e6dc26f008e0 Mon Sep 17 00:00:00 2001 From: TheCharlatan Date: Fri, 21 Jul 2023 13:47:43 +0200 Subject: kernel: Split ParseSighashString This split is done in preparation for the next commit where the dependency on UniValue in the kernel library is removed. --- src/test/fuzz/parse_univalue.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/test/fuzz') diff --git a/src/test/fuzz/parse_univalue.cpp b/src/test/fuzz/parse_univalue.cpp index 6d33c1a8cc..ac3e393401 100644 --- a/src/test/fuzz/parse_univalue.cpp +++ b/src/test/fuzz/parse_univalue.cpp @@ -75,7 +75,7 @@ FUZZ_TARGET_INIT(parse_univalue, initialize_parse_univalue) } try { (void)ParseSighashString(univalue); - } catch (const std::runtime_error&) { + } catch (const UniValue&) { } try { (void)AmountFromValue(univalue); -- cgit v1.2.3