mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 13:46:43 +00:00
fix bug
This commit is contained in:
parent
344720f94e
commit
955f0bd8e6
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue