mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
core: fix blob fee checker
This commit is contained in:
parent
5f39342a76
commit
9da87f8b99
1 changed files with 1 additions and 1 deletions
|
|
@ -327,7 +327,7 @@ func (st *StateTransition) preCheck() error {
|
|||
if st.evm.ChainConfig().IsCancun(st.evm.Context.BlockNumber, st.evm.Context.Time) {
|
||||
if st.blobGasUsed() > 0 {
|
||||
// Skip the checks if gas fields are zero and blobBaseFee was explicitly disabled (eth_call)
|
||||
if !st.evm.Config.NoBaseFee && msg.BlobGasFeeCap.BitLen() > 0 {
|
||||
if !st.evm.Config.NoBaseFee || msg.BlobGasFeeCap.BitLen() > 0 {
|
||||
if l := msg.BlobGasFeeCap.BitLen(); l > 256 {
|
||||
return fmt.Errorf("%w: address %v, blobGasFeeCap bit length: %d", ErrFeeCapVeryHigh,
|
||||
msg.From.Hex(), l)
|
||||
|
|
|
|||
Loading…
Reference in a new issue