core/vm: fix bench target

This commit is contained in:
Sina Mahmoodi 2025-05-23 18:27:09 +02:00
parent 0287666b7d
commit f93f8aaee6

View file

@ -370,7 +370,7 @@ func BenchmarkPrecompiledBLS12381G1MultiExpWorstCase(b *testing.B) {
Name: "WorstCaseG1",
NoBenchmark: false,
}
benchmarkPrecompiled("f0c", testcase, b)
benchmarkPrecompiled("f0b", testcase, b)
}
// BenchmarkPrecompiledBLS12381G2MultiExpWorstCase benchmarks the worst case we could find that still fits a gaslimit of 10MGas.
@ -391,5 +391,5 @@ func BenchmarkPrecompiledBLS12381G2MultiExpWorstCase(b *testing.B) {
Name: "WorstCaseG2",
NoBenchmark: false,
}
benchmarkPrecompiled("f0f", testcase, b)
benchmarkPrecompiled("f0d", testcase, b)
}