Skip to content

Commit

Permalink
evmmax: Enable new epairing implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
rodiazet committed Aug 8, 2024
1 parent 69816d4 commit f24df4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/state/precompiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ inline constexpr auto traits = []() noexcept {
{expmod_analyze, expmod_stub},
{ecadd_analyze, ecadd_execute},
{ecmul_analyze, ecmul_execute},
{ecpairing_analyze, ecpairing_stub},
{ecpairing_analyze, ecpairing_execute},
{blake2bf_analyze, blake2bf_execute},
{point_evaluation_analyze, point_evaluation_stub},
}};
Expand All @@ -378,8 +378,8 @@ inline constexpr auto traits = []() noexcept {
tbl[static_cast<size_t>(PrecompileId::expmod)].execute = silkpre_expmod_execute;
// tbl[static_cast<size_t>(PrecompileId::ecadd)].execute = silkpre_ecadd_execute;
// tbl[static_cast<size_t>(PrecompileId::ecmul)].execute = silkpre_ecmul_execute;
tbl[static_cast<size_t>(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
// tbl[static_cast<size_t>(PrecompileId::blake2bf)].execute = silkpre_blake2bf_execute;
// tbl[static_cast<size_t>(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
#endif
return tbl;
}();
Expand Down

0 comments on commit f24df4c

Please sign in to comment.