We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e0c8c6 commit 0c65695Copy full SHA for 0c65695
1 file changed
tests/benchmark/compute/scenario/test_transaction_types.py
@@ -322,6 +322,13 @@ def test_block_full_access_list_and_data(
322
Test a block with access lists (60% gas) and calldata (40% gas) using
323
random mixed bytes.
324
"""
325
+ # Skip if EIP-7934 block RLP size limit would be exceeded
326
+ block_rlp_limit = fork.block_rlp_size_limit()
327
+ if block_rlp_limit:
328
+ pytest.skip(
329
+ "Test skipped: EIP-7934 block RLP size limit might be exceeded"
330
+ )
331
+
332
iteration_count = math.ceil(gas_benchmark_value / tx_gas_limit)
333
334
gas_remaining = gas_benchmark_value
0 commit comments