Skip to content

Commit f24df4c

Browse files
committed
evmmax: Enable new epairing implementation
1 parent 69816d4 commit f24df4c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/state/precompiles.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ inline constexpr auto traits = []() noexcept {
367367
{expmod_analyze, expmod_stub},
368368
{ecadd_analyze, ecadd_execute},
369369
{ecmul_analyze, ecmul_execute},
370-
{ecpairing_analyze, ecpairing_stub},
370+
{ecpairing_analyze, ecpairing_execute},
371371
{blake2bf_analyze, blake2bf_execute},
372372
{point_evaluation_analyze, point_evaluation_stub},
373373
}};
@@ -378,8 +378,8 @@ inline constexpr auto traits = []() noexcept {
378378
tbl[static_cast<size_t>(PrecompileId::expmod)].execute = silkpre_expmod_execute;
379379
// tbl[static_cast<size_t>(PrecompileId::ecadd)].execute = silkpre_ecadd_execute;
380380
// tbl[static_cast<size_t>(PrecompileId::ecmul)].execute = silkpre_ecmul_execute;
381-
tbl[static_cast<size_t>(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
382381
// tbl[static_cast<size_t>(PrecompileId::blake2bf)].execute = silkpre_blake2bf_execute;
382+
// tbl[static_cast<size_t>(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
383383
#endif
384384
return tbl;
385385
}();

0 commit comments

Comments
 (0)