@@ -360,7 +360,7 @@ func (p *BlobPool) Init(gasTip uint64, head *types.Header, reserve txpool.Addres
360360 }
361361 }
362362 // Initialize the state with head block, or fallback to empty one in
363- // case the head state is not available(might occur when node is not
363+ // case the head state is not available (might occur when node is not
364364 // fully synced).
365365 state , err := p .chain .StateAt (head .Root )
366366 if err != nil {
@@ -540,7 +540,7 @@ func (p *BlobPool) recheck(addr common.Address, inclusions map[common.Hash]uint6
540540 }
541541 delete (p .index , addr )
542542 delete (p .spent , addr )
543- if inclusions != nil { // only during reorgs will the heap will be initialized
543+ if inclusions != nil { // only during reorgs will the heap be initialized
544544 heap .Remove (p .evict , p .evict .index [addr ])
545545 }
546546 p .reserve (addr , false )
@@ -693,7 +693,7 @@ func (p *BlobPool) recheck(addr common.Address, inclusions map[common.Hash]uint6
693693 if len (txs ) == 0 {
694694 delete (p .index , addr )
695695 delete (p .spent , addr )
696- if inclusions != nil { // only during reorgs will the heap will be initialized
696+ if inclusions != nil { // only during reorgs will the heap be initialized
697697 heap .Remove (p .evict , p .evict .index [addr ])
698698 }
699699 p .reserve (addr , false )
@@ -809,7 +809,7 @@ func (p *BlobPool) Reset(oldHead, newHead *types.Header) {
809809 }
810810 }
811811 // Recheck the account's pooled transactions to drop included and
812- // invalidated one
812+ // invalidated ones
813813 p .recheck (addr , inclusions )
814814 }
815815 if len (adds ) > 0 {
@@ -1226,7 +1226,7 @@ func (p *BlobPool) Add(txs []*types.Transaction, local bool, sync bool) []error
12261226// consensus validity and pool restrictions).
12271227func (p * BlobPool ) add (tx * types.Transaction ) (err error ) {
12281228 // The blob pool blocks on adding a transaction. This is because blob txs are
1229- // only even pulled form the network, so this method will act as the overload
1229+ // only even pulled from the network, so this method will act as the overload
12301230 // protection for fetches.
12311231 waitStart := time .Now ()
12321232 p .lock .Lock ()
@@ -1554,7 +1554,7 @@ func (p *BlobPool) updateStorageMetrics() {
15541554}
15551555
15561556// updateLimboMetrics retrieves a bunch of stats from the limbo store and pushes
1557- // // them out as metrics.
1557+ // them out as metrics.
15581558func (p * BlobPool ) updateLimboMetrics () {
15591559 stats := p .limbo .store .Infos ()
15601560
0 commit comments