File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -266,8 +266,14 @@ func BenchmarkPrecompiledIdentity(bench *testing.B) {
266266func TestPrecompiledModExp(t *testing.T) { testJson("modexp", "05", t) }
267267func BenchmarkPrecompiledModExp(b *testing.B) { benchJson("modexp", "05", b) }
268268
269- func TestPrecompiledModExpEip2565(t *testing.T) { testJson("modexp_eip2565", "f5", t) }
270- func BenchmarkPrecompiledModExpEip2565(b *testing.B) { benchJson("modexp_eip2565", "f5", b) }
269+ func TestPrecompiledModExpEip2565(t *testing.T) {
270+ t.Skip("eip2565 to be implemented")
271+ testJson("modexp_eip2565", "f5", t)
272+ }
273+ func BenchmarkPrecompiledModExpEip2565(b *testing.B) {
274+ b.Skip("eip2565 to be implemented")
275+ benchJson("modexp_eip2565", "f5", b)
276+ }
271277
272278// Tests the sample inputs from the elliptic curve addition EIP 213.
273279func TestPrecompiledBn256Add(t *testing.T) { testJson("bn256Add", "06", t) }
You can’t perform that action at this time.
0 commit comments