Skip to content

Commit 54aa0c2

Browse files
committed
fixup(forks): Return instead of error raise in blob_gas_per_blob
1 parent 69e8489 commit 54aa0c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ethereum_test_forks/forks/forks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ def blob_gas_per_blob(cls, block_number: int = 0, timestamp: int = 0) -> int:
276276
"""
277277
Returns the amount of blob gas used per blob at a given fork.
278278
"""
279-
raise NotImplementedError("Blob gas per blob is not supported in Frontier")
279+
return 0
280280

281281
@classmethod
282282
def target_blobs_per_block(cls, block_number: int = 0, timestamp: int = 0) -> int:

0 commit comments

Comments
 (0)