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 @@ -322,7 +322,7 @@ inline constexpr auto traits = []() noexcept {
322
322
{expmod_analyze, dummy_execute<PrecompileId::expmod>},
323
323
{ecadd_analyze, ecadd_execute},
324
324
{ecmul_analyze, ecmul_execute},
325
- {ecpairing_analyze, dummy_execute<PrecompileId::ecpairing> },
325
+ {ecpairing_analyze, ecpairing_execute },
326
326
{blake2bf_analyze, dummy_execute<PrecompileId::blake2bf>},
327
327
{point_evaluation_analyze, dummy_execute<PrecompileId::point_evaluation>},
328
328
}};
@@ -333,7 +333,7 @@ inline constexpr auto traits = []() noexcept {
333
333
tbl[static_cast <size_t >(PrecompileId::expmod)].execute = silkpre_expmod_execute;
334
334
// tbl[static_cast<size_t>(PrecompileId::ecadd)].execute = silkpre_ecadd_execute;
335
335
// tbl[static_cast<size_t>(PrecompileId::ecmul)].execute = silkpre_ecmul_execute;
336
- tbl[static_cast <size_t >(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
336
+ // tbl[static_cast<size_t>(PrecompileId::ecpairing)].execute = silkpre_ecpairing_execute;
337
337
tbl[static_cast <size_t >(PrecompileId::blake2bf)].execute = silkpre_blake2bf_execute;
338
338
#endif
339
339
return tbl;
You can’t perform that action at this time.
0 commit comments