From 902aaefccd5348d431d9a49a4aa95208616e0d38 Mon Sep 17 00:00:00 2001 From: maskpp Date: Tue, 17 Sep 2024 16:44:40 +0800 Subject: [PATCH] rephrase the comment --- core/txpool/blobpool/blobpool.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/txpool/blobpool/blobpool.go b/core/txpool/blobpool/blobpool.go index cfa8c81d8c..26167bb186 100644 --- a/core/txpool/blobpool/blobpool.go +++ b/core/txpool/blobpool/blobpool.go @@ -1028,7 +1028,7 @@ func (p *BlobPool) SetGasTip(tip *big.Int) { for addr, txs := range p.index { for i, tx := range txs { if tx.execTipCap.Cmp(p.gasTip) < 0 { - // Drop the offending transaction + // Drop the offending transaction and everything afterwards, no gaps allowed var ( dropTxs = txs[i:] ids = make([]uint64, len(dropTxs))