We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf908fa commit 22e3ad8Copy full SHA for 22e3ad8
1 file changed
tests/benchmark/compute/instruction/test_storage.py
@@ -9,6 +9,7 @@
9
"""
10
11
import math
12
+
13
import pytest
14
from execution_testing import (
15
Alloc,
@@ -356,7 +357,9 @@ def test_storage_access_warm(
356
357
num_exec_txs = math.ceil(gas_benchmark_value / tx_max_gas_limit)
358
txs = []
359
for i in range(num_exec_txs):
- tx_gas_limit = min(tx_max_gas_limit, gas_benchmark_value - i * tx_max_gas_limit)
360
+ tx_gas_limit = min(
361
+ tx_max_gas_limit, gas_benchmark_value - i * tx_max_gas_limit
362
+ )
363
op_tx = Transaction(
364
to=contract_address,
365
gas_limit=tx_gas_limit,
0 commit comments