mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
rephrase the comment
This commit is contained in:
parent
480671d52b
commit
902aaefccd
1 changed files with 1 additions and 1 deletions
|
|
@ -1028,7 +1028,7 @@ func (p *BlobPool) SetGasTip(tip *big.Int) {
|
||||||
for addr, txs := range p.index {
|
for addr, txs := range p.index {
|
||||||
for i, tx := range txs {
|
for i, tx := range txs {
|
||||||
if tx.execTipCap.Cmp(p.gasTip) < 0 {
|
if tx.execTipCap.Cmp(p.gasTip) < 0 {
|
||||||
// Drop the offending transaction
|
// Drop the offending transaction and everything afterwards, no gaps allowed
|
||||||
var (
|
var (
|
||||||
dropTxs = txs[i:]
|
dropTxs = txs[i:]
|
||||||
ids = make([]uint64, len(dropTxs))
|
ids = make([]uint64, len(dropTxs))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue