We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14a811c commit dcebcf9Copy full SHA for dcebcf9
tests/zkevm/test_worst_compute.py
@@ -6,7 +6,6 @@
6
"""
7
8
import math
9
-from typing import SupportsBytes
10
11
import pytest
12
@@ -337,7 +336,7 @@ def test_worst_modexp(
337
336
pytest.param(
338
bls12381_spec.Spec.G2MSM,
339
[
340
- # TODO: the //2 is only required due to a limitation of the max contract size limit.
+ # TODO: the //2 is required due to a limitation of the max contract size limit.
341
# In a further iteration we can insert the inputs as calldata or storage and avoid
342
# having to do PUSHes which has this limtiation. This also applies to G1MSM.
343
(bls12381_spec.Spec.P2 + bls12381_spec.Scalar(bls12381_spec.Spec.Q))
0 commit comments