diff --git a/crates/transaction-pool/src/maintain.rs b/crates/transaction-pool/src/maintain.rs index 1aa446345e..05bb7824a0 100644 --- a/crates/transaction-pool/src/maintain.rs +++ b/crates/transaction-pool/src/maintain.rs @@ -105,7 +105,7 @@ pub async fn maintain_transaction_pool( // The update loop that waits for new blocks and reorgs and performs pool updated // Listen for new chain events and derive the update action for the pool loop { - trace!(target = "txpool", state=?maintained_state, "awaiting new block or reorg"); + trace!(target: "txpool", state=?maintained_state, "awaiting new block or reorg"); metrics.set_dirty_accounts_len(dirty_addresses.len()); let pool_info = pool.block_info(); @@ -181,7 +181,7 @@ pub async fn maintain_transaction_pool( Some(Ok(Err(res))) => { // Failed to load accounts from state let (accs, err) = *res; - debug!(target = "txpool", ?err, "failed to load accounts"); + debug!(target: "txpool", ?err, "failed to load accounts"); dirty_addresses.extend(accs); } Some(Err(_)) => { @@ -238,7 +238,7 @@ pub async fn maintain_transaction_pool( Err(err) => { let (addresses, err) = *err; debug!( - target = "txpool", + target: "txpool", ?err, "failed to load missing changed accounts at new tip: {:?}", new_tip.hash @@ -295,7 +295,7 @@ pub async fn maintain_transaction_pool( let first_block = blocks.first(); trace!( - target = "txpool", + target: "txpool", first = first_block.number, tip = tip.number, pool_block = pool_info.last_seen_block_number, @@ -307,7 +307,7 @@ pub async fn maintain_transaction_pool( let depth = tip.number.abs_diff(pool_info.last_seen_block_number); if depth > max_update_depth { maintained_state = MaintainedPoolState::Drifted; - debug!(target = "txpool", ?depth, "skipping deep canonical update"); + debug!(target: "txpool", ?depth, "skipping deep canonical update"); let info = BlockInfo { last_seen_block_hash: tip.hash, last_seen_block_number: tip.number,