Skip to content

Commit 4b1152a

Browse files
committed
fixup(forks): Return instead of error raise in blob_gas_per_blob
1 parent 903f7ef commit 4b1152a

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
@@ -259,7 +259,7 @@ def blob_gas_per_blob(cls, block_number: int = 0, timestamp: int = 0) -> int:
259259
"""
260260
Returns the amount of blob gas used per blob at a given fork.
261261
"""
262-
raise NotImplementedError("Blob gas per blob is not supported in Frontier")
262+
return 0
263263

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

0 commit comments

Comments
 (0)