@@ -458,7 +458,7 @@ func (p *BlobPool) parseTransaction(id uint64, size uint32, blob []byte) error {
458458 tx := new (types.Transaction )
459459 if err := rlp .DecodeBytes (blob , tx ); err != nil {
460460 // This path is impossible unless the disk data representation changes
461- // across restarts. For that ever unprobable case, recover gracefully
461+ // across restarts. For that ever improbable case, recover gracefully
462462 // by ignoring this data entry.
463463 log .Error ("Failed to decode blob pool entry" , "id" , id , "err" , err )
464464 return err
@@ -479,7 +479,7 @@ func (p *BlobPool) parseTransaction(id uint64, size uint32, blob []byte) error {
479479 sender , err := p .signer .Sender (tx )
480480 if err != nil {
481481 // This path is impossible unless the signature validity changes across
482- // restarts. For that ever unprobable case, recover gracefully by ignoring
482+ // restarts. For that ever improbable case, recover gracefully by ignoring
483483 // this data entry.
484484 log .Error ("Failed to recover blob tx sender" , "id" , id , "hash" , tx .Hash (), "err" , err )
485485 return err
@@ -749,7 +749,7 @@ func (p *BlobPool) recheck(addr common.Address, inclusions map[common.Hash]uint6
749749// offload removes a tracked blob transaction from the pool and moves it into the
750750// limbo for tracking until finality.
751751//
752- // The method may log errors for various unexpcted scenarios but will not return
752+ // The method may log errors for various unexpected scenarios but will not return
753753// any of it since there's no clear error case. Some errors may be due to coding
754754// issues, others caused by signers mining MEV stuff or swapping transactions. In
755755// all cases, the pool needs to continue operating.
@@ -1201,7 +1201,7 @@ func (p *BlobPool) Get(hash common.Hash) *types.Transaction {
12011201}
12021202
12031203// Add inserts a set of blob transactions into the pool if they pass validation (both
1204- // consensus validity and pool restictions ).
1204+ // consensus validity and pool restrictions ).
12051205func (p * BlobPool ) Add (txs []* types.Transaction , local bool , sync bool ) []error {
12061206 var (
12071207 adds = make ([]* types.Transaction , 0 , len (txs ))
@@ -1221,7 +1221,7 @@ func (p *BlobPool) Add(txs []*types.Transaction, local bool, sync bool) []error
12211221}
12221222
12231223// Add inserts a new blob transaction into the pool if it passes validation (both
1224- // consensus validity and pool restictions ).
1224+ // consensus validity and pool restrictions ).
12251225func (p * BlobPool ) add (tx * types.Transaction ) (err error ) {
12261226 // The blob pool blocks on adding a transaction. This is because blob txs are
12271227 // only even pulled form the network, so this method will act as the overload
0 commit comments