Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 209f381

Browse files
rodiazetchfast
authored andcommittedApr 4, 2024··
evmmax: Enable new epairing implementation
1 parent 4a3169a commit 209f381

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
@@ -322,7 +322,7 @@ inline constexpr auto traits = []() noexcept {
322322
{expmod_analyze, dummy_execute<PrecompileId::expmod>},
323323
{ecadd_analyze, ecadd_execute},
324324
{ecmul_analyze, ecmul_execute},
325-
{ecpairing_analyze, dummy_execute<PrecompileId::ecpairing>},
325+
{ecpairing_analyze, ecpairing_execute},
326326
{blake2bf_analyze, dummy_execute<PrecompileId::blake2bf>},
327327
{point_evaluation_analyze, dummy_execute<PrecompileId::point_evaluation>},
328328
}};
@@ -333,7 +333,7 @@ inline constexpr auto traits = []() noexcept {
333333
tbl[static_cast<size_t>(PrecompileId::expmod)].execute = silkpre_expmod_execute;
334334
// tbl[static_cast<size_t>(PrecompileId::ecadd)].execute = silkpre_ecadd_execute;
335335
// tbl[static_cast<size_t>(PrecompileId::ecmul)].execute = silkpre_ecmul_execute;
336-
tbl[static_cast<size_t>(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
336+
// tbl[static_cast<size_t>(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
337337
tbl[static_cast<size_t>(PrecompileId::blake2bf)].execute = silkpre_blake2bf_execute;
338338
#endif
339339
return tbl;

0 commit comments

Comments
 (0)
Please sign in to comment.