File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -367,8 +367,8 @@ inline constexpr auto traits = []() noexcept {
367
367
{expmod_analyze, expmod_stub},
368
368
{ecadd_analyze, ecadd_execute},
369
369
{ecmul_analyze, ecmul_execute},
370
- {ecpairing_analyze, ecpairing_stub},
371
370
{blake2bf_analyze, blake2bf_execute},
371
+ {ecpairing_analyze, ecpairing_execute},
372
372
{point_evaluation_analyze, point_evaluation_stub},
373
373
}};
374
374
#ifdef EVMONE_PRECOMPILES_SILKPRE
@@ -378,8 +378,8 @@ inline constexpr auto traits = []() noexcept {
378
378
tbl[static_cast <size_t >(PrecompileId::expmod)].execute = silkpre_expmod_execute;
379
379
// tbl[static_cast<size_t>(PrecompileId::ecadd)].execute = silkpre_ecadd_execute;
380
380
// tbl[static_cast<size_t>(PrecompileId::ecmul)].execute = silkpre_ecmul_execute;
381
- tbl[static_cast <size_t >(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
382
381
// tbl[static_cast<size_t>(PrecompileId::blake2bf)].execute = silkpre_blake2bf_execute;
382
+ // tbl[static_cast<size_t>(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
383
383
#endif
384
384
return tbl;
385
385
}();
You can’t perform that action at this time.
0 commit comments