Skip to content

Commit a4f2b18

Browse files
committed
[test]: remove ExtractDestination false assertion for ANCHOR script
1 parent bacab13 commit a4f2b18

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/test/fuzz/script.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,11 @@ FUZZ_TARGET(script, .init = initialize_script)
7676
assert(which_type == TxoutType::PUBKEY ||
7777
which_type == TxoutType::NONSTANDARD ||
7878
which_type == TxoutType::NULL_DATA ||
79-
which_type == TxoutType::MULTISIG ||
80-
which_type == TxoutType::ANCHOR);
79+
which_type == TxoutType::MULTISIG);
8180
}
8281
if (which_type == TxoutType::NONSTANDARD ||
8382
which_type == TxoutType::NULL_DATA ||
84-
which_type == TxoutType::MULTISIG ||
85-
which_type == TxoutType::ANCHOR) {
83+
which_type == TxoutType::MULTISIG) {
8684
assert(!extract_destination_ret);
8785
}
8886

0 commit comments

Comments
 (0)