Skip to content
This repository has been archived by the owner on Sep 23, 2023. It is now read-only.

Commit

Permalink
Forgot this guy
Browse files Browse the repository at this point in the history
  • Loading branch information
somnathb1 committed Sep 18, 2023
1 parent a726ee9 commit c54dc75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion txpool/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -1283,7 +1283,7 @@ func (p *TxPool) addLocked(mt *metaTx, announcements *types.Announcements) txpoo
}

// Don't add blob tx to queued if it's less than current pending blob base fee
if mt.Tx.Type == types.BlobTxType && mt.Tx.BlobFeeCap.Uint64() < p.pendingBlobFee.Load() {
if mt.Tx.Type == types.BlobTxType && mt.Tx.BlobFeeCap.LtUint64(p.pendingBlobFee.Load()) {
return txpoolcfg.FeeTooLow
}

Expand Down

0 comments on commit c54dc75

Please sign in to comment.