Skip to content

Commit 2a5455a

Browse files
committed
Mark has_free_verify more CurrIndEq
1 parent 6029aba commit 2a5455a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/extensions/introspect_ops.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,11 @@ impl<T: ExtParam> Extension for CovOps<T> {
424424
fn extra_prop(&self) -> ExtData {
425425
ExtData {
426426
pk_cost: self.script_size(), // 1 opcodes, 1 key push, msg, 1 msg push
427-
has_free_verify: false,
427+
has_free_verify: if let CovOps::CurrIndEq(..) = self {
428+
true
429+
} else {
430+
false
431+
},
428432
stack_elem_count_sat: Some(0),
429433
stack_elem_count_dissat: Some(0),
430434
max_sat_size: Some((0, 0)),

0 commit comments

Comments
 (0)