From 5755f72442bde622d26ef6071df7c02b9a9cc86b Mon Sep 17 00:00:00 2001 From: Mamy Ratsimbazafy Date: Tue, 30 Apr 2024 07:40:42 +0200 Subject: [PATCH] eip2537: bn254 tests properly call renamed procedure --- tests/t_ethereum_evm_precompiles.nim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/t_ethereum_evm_precompiles.nim b/tests/t_ethereum_evm_precompiles.nim index 464dde1d..a3f9c60d 100644 --- a/tests/t_ethereum_evm_precompiles.nim +++ b/tests/t_ethereum_evm_precompiles.nim @@ -69,8 +69,8 @@ template runPrecompileTests(filename: string, funcname: untyped) = `PrecompileTestrunner _ funcname`() -runPrecompileTests("bn256Add.json", eth_evm_ecadd) -runPrecompileTests("bn256mul.json", eth_evm_ecmul) -runPrecompileTests("pairing.json", eth_evm_ecpairing) +runPrecompileTests("bn256Add.json", eth_evm_bn254_ecadd) +runPrecompileTests("bn256mul.json", eth_evm_bn254_ecmul) +runPrecompileTests("pairing.json", eth_evm_bn254_ecpairingcheck) runPrecompileTests("modexp.json", eth_evm_modexp) runPrecompileTests("modexp_eip2565.json", eth_evm_modexp) \ No newline at end of file