From dc78fceb7a57eeaea7aff058399be7ffc2afb3f6 Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Thu, 21 Nov 2024 19:45:29 +0700 Subject: [PATCH] fix --- cmd/evm/runner.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cmd/evm/runner.go b/cmd/evm/runner.go index 7c5bba809c..eadc3d91d4 100644 --- a/cmd/evm/runner.go +++ b/cmd/evm/runner.go @@ -88,7 +88,6 @@ func timedExec(bench bool, execFunc func() ([]byte, uint64, error)) (output []by var gasUsed uint64 output, gasUsed, execErr = execFunc() var benchErr error - testing.Init() result := testing.Benchmark(func(b *testing.B) { for i := 0; i < b.N; i++ { haveOutput, haveGasUsed, haveErr := execFunc()