From 34848e387307074ab6a87ddd88cf08b8565cc51b Mon Sep 17 00:00:00 2001 From: Dzejkop Date: Mon, 11 Dec 2023 11:02:34 +0100 Subject: [PATCH] fmt --- src/tasks/handle_reorgs.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) 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(