Skip to content

Commit e2ca766

Browse files
committed
fix: filling with EELS correctly.
1 parent 79e6607 commit e2ca766

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

src/ethereum_test_forks/forks/forks.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1244,20 +1244,6 @@ def header_requests_required(cls, block_number: int, timestamp: int) -> bool:
12441244
"""
12451245
return True
12461246

1247-
@classmethod
1248-
def target_blobs_per_block(cls, block_number: int, timestamp: int) -> int:
1249-
"""
1250-
Blobs are decoupled from EL at Prague, and gets a static target of 6 blobs from the CL.
1251-
"""
1252-
return 6
1253-
1254-
@classmethod
1255-
def max_blobs_per_block(cls, block_number: int, timestamp: int) -> int:
1256-
"""
1257-
Blobs are decoupled from EL at Prague, and gets static max of 9 blobs from the CL.
1258-
"""
1259-
return 9
1260-
12611247
@classmethod
12621248
def header_target_blobs_per_block_required(
12631249
cls,

tests/cancun/eip4844_blobs/test_blob_txs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ def test_invalid_normal_gas(
739739
"tx_error", [TransactionException.TYPE_3_TX_MAX_BLOB_GAS_ALLOWANCE_EXCEEDED], ids=[""]
740740
)
741741
@pytest.mark.valid_from("Cancun")
742-
@pytest.mark.valid_until("Prague")
742+
@pytest.mark.valid_until("Cancun")
743743
def test_invalid_block_blob_count(
744744
blockchain_test: BlockchainTestFiller,
745745
pre: Alloc,
@@ -1010,7 +1010,7 @@ def test_insufficient_balance_blob_tx_combinations(
10101010
ids=["too_few_blobs", "too_many_blobs"],
10111011
)
10121012
@pytest.mark.valid_from("Cancun")
1013-
@pytest.mark.valid_until("Prague")
1013+
@pytest.mark.valid_until("Cancun")
10141014
def test_invalid_tx_blob_count(
10151015
state_test: StateTestFiller,
10161016
state_env: Environment,

0 commit comments

Comments
 (0)