This commit is contained in:
maskpp 2025-08-06 10:07:56 +08:00
parent 344720f94e
commit 955f0bd8e6

View file

@ -1674,7 +1674,7 @@ func (p *BlobPool) Pending(filter txpool.PendingFilter) map[common.Address][]*tx
} }
} }
if filter.GasLimitCap != 0 { if filter.GasLimitCap != 0 {
if tx.execGas > filter.GasLimitCap { if tx.ExecGas > filter.GasLimitCap {
break // execution gas limit is too high break // execution gas limit is too high
} }
} }