diff --git a/ethers-middleware/src/gas_escalator/mod.rs b/ethers-middleware/src/gas_escalator/mod.rs index f4045ffc5..5b9448280 100644 --- a/ethers-middleware/src/gas_escalator/mod.rs +++ b/ethers-middleware/src/gas_escalator/mod.rs @@ -375,6 +375,7 @@ impl EscalationTask { if receipt.is_some() { // tx was already included, can drop from escalator + tracing::debug!(tx = ?monitored_tx, receipt = ?receipt, "transaction was included onchain, dropping from escalator"); continue; } let Some(new_tx) = monitored_tx.escalate_gas_price(self.escalator.clone()) else {