Tests the sample inputs from the ModExp EIP 198.
(t *testing.T)
| 428 | |
| 429 | // Tests the sample inputs from the ModExp EIP 198. |
| 430 | func TestPrecompiledModExp(t *testing.T) { |
| 431 | for _, test := range modexpTests { |
| 432 | testPrecompiled("05", test, t) |
| 433 | } |
| 434 | } |
| 435 | |
| 436 | // Benchmarks the sample inputs from the ModExp EIP 198. |
| 437 | func BenchmarkPrecompiledModExp(bench *testing.B) { |
nothing calls this directly
no test coverage detected