Skip to content

Commit b9bd239

Browse files
committed
Skip tests for EIP 2565 precompiled modexp implementation
1 parent c38f0e7 commit b9bd239

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

core/vm/contracts_test.go

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,14 @@ func BenchmarkPrecompiledIdentity(bench *testing.B) {
266266
func TestPrecompiledModExp(t *testing.T) { testJson("modexp", "05", t) }
267267
func 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.
273279
func TestPrecompiledBn256Add(t *testing.T) { testJson("bn256Add", "06", t) }

0 commit comments

Comments
 (0)