Skip to content

Commit ca5d8f3

Browse files
committed
evmmax: Enable new epairing implementation
1 parent f7fd5dc commit ca5d8f3

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
@@ -607,7 +607,7 @@ inline constexpr auto traits = []() noexcept {
607607
{expmod_analyze, expmod_stub},
608608
{ecadd_analyze, ecadd_execute},
609609
{ecmul_analyze, ecmul_execute},
610-
{ecpairing_analyze, ecpairing_stub},
610+
{ecpairing_analyze, ecpairing_execute},
611611
{blake2bf_analyze, blake2bf_execute},
612612
{point_evaluation_analyze, point_evaluation_execute},
613613
{bls12_g1add_analyze, bls12_g1add_execute},
@@ -627,8 +627,8 @@ inline constexpr auto traits = []() noexcept {
627627
tbl[static_cast<size_t>(PrecompileId::expmod)].execute = silkpre_expmod_execute;
628628
// tbl[static_cast<size_t>(PrecompileId::ecadd)].execute = silkpre_ecadd_execute;
629629
// tbl[static_cast<size_t>(PrecompileId::ecmul)].execute = silkpre_ecmul_execute;
630-
tbl[static_cast<size_t>(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
631630
// tbl[static_cast<size_t>(PrecompileId::blake2bf)].execute = silkpre_blake2bf_execute;
631+
// tbl[static_cast<size_t>(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
632632
#endif
633633
return tbl;
634634
}();

0 commit comments

Comments
 (0)