From 1b42438b5866469010b27d4ba0469ee7ec5d99a7 Mon Sep 17 00:00:00 2001 From: lightclient Date: Fri, 19 Sep 2025 16:55:58 -0600 Subject: [PATCH] core/vm: remove unneeded StopTimer call in benchmark --- core/vm/instructions_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/vm/instructions_test.go b/core/vm/instructions_test.go index eb5c356a8c..72f561f4bf 100644 --- a/core/vm/instructions_test.go +++ b/core/vm/instructions_test.go @@ -298,7 +298,6 @@ func opBenchmark(bench *testing.B, op executionFunc, args ...string) { op(&pc, evm, scope) stack.pop() } - bench.StopTimer() for i, arg := range args { want := new(uint256.Int).SetBytes(common.Hex2Bytes(arg))