Skip to content

Commit 8ace7a9

Browse files
committed
lints and cleanup
Signed-off-by: Ignacio Hagopian <jsign.uy@gmail.com>
1 parent 6965620 commit 8ace7a9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/zkevm/test_worst_compute.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
import pytest
1111

1212
from ethereum_test_forks import Fork
13-
from ethereum_test_tools import Alloc, Block, BlockchainTestFiller, Environment, Transaction
13+
from ethereum_test_tools import (Alloc, Block, BlockchainTestFiller,
14+
Environment, Transaction)
1415
from ethereum_test_tools.vm.opcode import Opcodes as Op
1516

1617
REFERENCE_SPEC_GIT_PATH = "TODO"
@@ -127,7 +128,7 @@ def test_worst_modexp(
127128
exp_length = 32
128129

129130
base = 2 ** (8 * base_mod_length) - 1
130-
mod = 2 ** (8 * base_mod_length) - 2 # Prevnts base == mod
131+
mod = 2 ** (8 * base_mod_length) - 2 # Prevents base == mod
131132
exp = 2 ** (8 * exp_length) - 1
132133

133134
# MODEXP calldata

0 commit comments

Comments
 (0)