Skip to content

Commit 2d96525

Browse files
committed
chore(tests): Fix misnamed vars in excess_blob_gas test
1 parent d4d1576 commit 2d96525

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/cancun/eip4844_blobs/test_excess_blob_gas.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -457,9 +457,9 @@ def all_invalid_blob_gas_used_combinations() -> Iterator[Tuple[int, int]]:
457457
Returns all invalid blob gas used combinations.
458458
"""
459459
for new_blobs in range(0, SpecHelpers.max_blobs_per_block() + 1):
460-
for header_blob_gas_used in range(0, SpecHelpers.max_blobs_per_block() + 1):
461-
if new_blobs != header_blob_gas_used:
462-
yield (new_blobs, header_blob_gas_used * Spec.GAS_PER_BLOB)
460+
for header_blobs in range(0, SpecHelpers.max_blobs_per_block() + 1):
461+
if new_blobs != header_blobs:
462+
yield (new_blobs, header_blobs * Spec.GAS_PER_BLOB)
463463
yield (new_blobs, 2**64 - 1)
464464

465465

0 commit comments

Comments
 (0)