diff --git a/core/tx_pool.go b/core/tx_pool.go index ff88503eda..a9f0c50766 100644 --- a/core/tx_pool.go +++ b/core/tx_pool.go @@ -635,22 +635,6 @@ func (pool *TxPool) TxPoolPending(enforceTips bool) (map[common.AddressBytes]typ pending := make(map[common.AddressBytes]types.Transactions) for addr, list := range pool.pending { txs := list.Flatten() - - // If the miner requests tip enforcement, cap the lists now - if enforceTips && !pool.locals.contains(addr) { - for i, tx := range txs { - if tx.EffectiveGasTipIntCmp(pool.gasPrice, pool.priced.urgent.baseFee) < 0 { - pool.logger.WithFields(log.Fields{ - "tx": tx.Hash().String(), - "gasTipCap": tx.GasTipCap().String(), - "poolGasPrice": pool.gasPrice.String(), - "baseFee": pool.priced.urgent.baseFee.String(), - }).Debug("TX has incorrect or low miner tip") - txs = txs[:i] - break - } - } - } if len(txs) > 0 { pending[addr.Bytes20()] = txs }