From 02b8f76da6ef7ec4941ea7e1b23edc81388f5eca Mon Sep 17 00:00:00 2001 From: LouisTsai Date: Fri, 6 Feb 2026 21:19:31 +0800 Subject: [PATCH] feat: enhance keccak benchmark --- tests/benchmark/compute/instruction/test_keccak.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/benchmark/compute/instruction/test_keccak.py b/tests/benchmark/compute/instruction/test_keccak.py index f117a173232..7211d04794f 100644 --- a/tests/benchmark/compute/instruction/test_keccak.py +++ b/tests/benchmark/compute/instruction/test_keccak.py @@ -103,6 +103,6 @@ def test_keccak_diff_mem_msg_sizes( target_opcode=Op.SHA3, code_generator=JumpLoopGenerator( setup=setup, - attack_block=Op.POP(Op.SHA3(0, msg_size)), + attack_block=Op.MSTORE(Op.PUSH0, Op.SHA3(Op.PUSH0, msg_size)), ), )