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 Sep 25, 2024
1 parent f7fd5dc commit ca5d8f3
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 @@ -607,7 +607,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_execute},
{bls12_g1add_analyze, bls12_g1add_execute},
Expand All @@ -627,8 +627,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 ca5d8f3

Please sign in to comment.