Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzejkop committed Dec 11, 2023
1 parent 956ea8d commit 34848e3
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/tasks/handle_reorgs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ pub async fn handle_hard_reorgs(app: Arc<App>) -> 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(
Expand All @@ -34,10 +31,7 @@ pub async fn handle_soft_reorgs(app: Arc<App>) -> 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(
Expand Down

0 comments on commit 34848e3

Please sign in to comment.