From b36134df3f6caa20a7599a0e30a46b7a3c6c127b Mon Sep 17 00:00:00 2001 From: Roman Krasiuk Date: Mon, 21 Jul 2025 10:27:00 +0200 Subject: [PATCH] feat(interpreter): update CLZ cost --- crates/interpreter/src/instructions/bitwise.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/interpreter/src/instructions/bitwise.rs b/crates/interpreter/src/instructions/bitwise.rs index 60da9fd092..18696e7871 100644 --- a/crates/interpreter/src/instructions/bitwise.rs +++ b/crates/interpreter/src/instructions/bitwise.rs @@ -25,7 +25,7 @@ pub fn gt(context: InstructionContext<'_, H, /// Implements the CLZ instruction - count leading zeros. pub fn clz(context: InstructionContext<'_, H, WIRE>) { check!(context.interpreter, OSAKA); - gas!(context.interpreter, gas::VERYLOW); + gas!(context.interpreter, gas::LOW); popn_top!([], op1, context.interpreter); let leading_zeros = op1.leading_zeros();