Skip to content

Commit

Permalink
Merge pull request #3 from gurukamath/prague-eip-7691
Browse files Browse the repository at this point in the history
Implement EIP-7691
  • Loading branch information
petertdavies authored Dec 10, 2024
2 parents 936e30b + 6d1dfe9 commit 48667cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ethereum/prague/vm/gas.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

GAS_PER_BLOB = Uint(2**17)
MIN_BLOB_GASPRICE = Uint(1)
BLOB_GASPRICE_UPDATE_FRACTION = Uint(3338477)
BLOB_BASE_FEE_UPDATE_FRACTION = Uint(5007716)


@dataclass
Expand Down Expand Up @@ -332,7 +332,7 @@ def calculate_blob_gas_price(excess_blob_gas: U64) -> Uint:
return taylor_exponential(
MIN_BLOB_GASPRICE,
Uint(excess_blob_gas),
BLOB_GASPRICE_UPDATE_FRACTION,
BLOB_BASE_FEE_UPDATE_FRACTION,
)


Expand Down

0 comments on commit 48667cf

Please sign in to comment.