diff --git a/src/tasks/handle_reorgs.rs b/src/tasks/handle_reorgs.rs index dd91dab..43c5f56 100644 --- a/src/tasks/handle_reorgs.rs +++ b/src/tasks/handle_reorgs.rs @@ -14,10 +14,7 @@ pub async fn handle_hard_reorgs(app: Arc) -> eyre::Result<()> { let reorged_txs = app.db.handle_hard_reorgs().await?; for tx in reorged_txs { - tracing::info!( - id = tx, - "Tx hard reorged" - ); + tracing::info!(id = tx, "Tx hard reorged"); } tokio::time::sleep(Duration::from_secs( @@ -34,10 +31,7 @@ pub async fn handle_soft_reorgs(app: Arc) -> eyre::Result<()> { let txs = app.db.handle_soft_reorgs().await?; for tx in txs { - tracing::info!( - id = tx, - "Tx soft reorged" - ); + tracing::info!(id = tx, "Tx soft reorged"); } tokio::time::sleep(Duration::from_secs(