Skip to content

Commit d2080b7

Browse files
rodiazetchfast
andcommitted
evmmax: Enable new epairing implementation
Co-authored-by: Paweł Bylica <[email protected]>
1 parent 32051de commit d2080b7

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
@@ -576,7 +576,7 @@ inline constexpr auto traits = []() noexcept {
576576
{expmod_analyze, expmod_stub},
577577
{ecadd_analyze, ecadd_execute},
578578
{ecmul_analyze, ecmul_execute},
579-
{ecpairing_analyze, ecpairing_stub},
579+
{ecpairing_analyze, ecpairing_execute},
580580
{blake2bf_analyze, blake2bf_execute},
581581
{point_evaluation_analyze, point_evaluation_execute},
582582
{bls12_g1add_analyze, bls12_g1add_execute},
@@ -594,8 +594,8 @@ inline constexpr auto traits = []() noexcept {
594594
tbl[static_cast<size_t>(PrecompileId::expmod)].execute = silkpre_expmod_execute;
595595
// tbl[static_cast<size_t>(PrecompileId::ecadd)].execute = silkpre_ecadd_execute;
596596
// tbl[static_cast<size_t>(PrecompileId::ecmul)].execute = silkpre_ecmul_execute;
597-
tbl[static_cast<size_t>(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
598597
// tbl[static_cast<size_t>(PrecompileId::blake2bf)].execute = silkpre_blake2bf_execute;
598+
// tbl[static_cast<size_t>(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
599599
#endif
600600
return tbl;
601601
}();

0 commit comments

Comments
 (0)