core/vm: remove unneeded StopTimer call in benchmark

This commit is contained in:
lightclient 2025-09-19 16:55:58 -06:00
parent f63c7bbbd8
commit 1b42438b58
No known key found for this signature in database
GPG key ID: 657913021EF45A6A

View file

@ -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))