diff --git a/core/txpool/legacypool/tx_overflowpool.go b/core/txpool/legacypool/tx_overflowpool.go index 7d1c56bd1f..ee6a924e03 100644 --- a/core/txpool/legacypool/tx_overflowpool.go +++ b/core/txpool/legacypool/tx_overflowpool.go @@ -91,7 +91,7 @@ func (tp *TxOverflowPool) Add(tx *types.Transaction) bool { // If the transaction is too big to ever fit (and the pool isn't empty right now), reject it if (txSlots > tp.maxSize) || (txSlots == tp.maxSize && tp.totalSize != 0) { - log.Warn("Transaction too large to fit in OverflowPool", "transaction", tx.Hash().String(), "requiredSlots", txSlots, "maxSlots", tp.maxSize) + log.Debug("Transaction too large to fit in OverflowPool", "transaction", tx.Hash().String(), "requiredSlots", txSlots, "maxSlots", tp.maxSize) return false }