Skip to content

Commit e016d98

Browse files
committed
evmmax: Enable new epairing implementation
1 parent c406070 commit e016d98

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,8 +367,8 @@ 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},
371370
{blake2bf_analyze, blake2bf_execute},
371+
{ecpairing_analyze, ecpairing_execute},
372372
{point_evaluation_analyze, point_evaluation_stub},
373373
}};
374374
#ifdef EVMONE_PRECOMPILES_SILKPRE
@@ -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)