aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorismaelsadeeq <ask4ismailsadiq@gmail.com>2024-08-09 11:18:45 +0100
committerismaelsadeeq <ask4ismailsadiq@gmail.com>2024-08-09 11:18:45 +0100
commita4f2b185732649eeea4a042cebd90d0e0e12cc92 (patch)
treecd49b78d2e4993b95f9b1d370d815fba843d1886
parentbacab1380edd764fcd9cd6cecfc4069bfa442a9f (diff)
[test]: remove `ExtractDestination` false assertion for `ANCHOR` script
-rw-r--r--src/test/fuzz/script.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/test/fuzz/script.cpp b/src/test/fuzz/script.cpp
index a23543d70e..07a49e039f 100644
--- a/src/test/fuzz/script.cpp
+++ b/src/test/fuzz/script.cpp
@@ -76,13 +76,11 @@ FUZZ_TARGET(script, .init = initialize_script)
assert(which_type == TxoutType::PUBKEY ||
which_type == TxoutType::NONSTANDARD ||
which_type == TxoutType::NULL_DATA ||
- which_type == TxoutType::MULTISIG ||
- which_type == TxoutType::ANCHOR);
+ which_type == TxoutType::MULTISIG);
}
if (which_type == TxoutType::NONSTANDARD ||
which_type == TxoutType::NULL_DATA ||
- which_type == TxoutType::MULTISIG ||
- which_type == TxoutType::ANCHOR) {
+ which_type == TxoutType::MULTISIG) {
assert(!extract_destination_ret);
}