Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tcoratger committed Oct 28, 2024
1 parent 6afc92d commit 6c1a3cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pool/mempool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ where
// - And the transaction is in the mempool right now
if now.duration_since(timestamp) > prune_duration && eth_client.mempool().contains(&tx_hash)
{
tracing::warn!("Transaction {} in mempool for more than 5 minutes. Pruning.", tx_hash);
tracing::warn!(target: "maintain_transaction_pool", tx_hash, "pruning");

// Add the transaction to the mined transactions so that it can be pruned
mined_transactions.push(tx_hash);
Expand Down

0 comments on commit 6c1a3cf

Please sign in to comment.