Skip to content

Commit

Permalink
Revert "core: remove pointless check for excessBlobGas nilness (ether…
Browse files Browse the repository at this point in the history
…eum#27797)"

This reverts commit cd2e754.
  • Loading branch information
devopsbo3 committed Nov 10, 2023
1 parent 562be5a commit 1162160
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/state_transition.go
Expand Up @@ -242,6 +242,10 @@ func (st *StateTransition) buyGas() error {
}
if st.evm.ChainConfig().IsCancun(st.evm.Context.BlockNumber, st.evm.Context.Time) {
if blobGas := st.blobGasUsed(); blobGas > 0 {
if st.evm.Context.ExcessBlobGas == nil {
// programming error
panic("missing field excess data gas")
}
// Check that the user has enough funds to cover blobGasUsed * tx.BlobGasFeeCap
blobBalanceCheck := new(big.Int).SetUint64(blobGas)
blobBalanceCheck.Mul(blobBalanceCheck, st.msg.BlobGasFeeCap)
Expand Down

0 comments on commit 1162160

Please sign in to comment.