Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzejkop committed Jan 9, 2024
1 parent 22a0395 commit c6d458e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tasks/escalate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async fn escalate_relayer_txs(
for tx in txs {
tracing::info!(id = tx.id, tx.escalation_count, "Escalating tx");

if !should_send_transaction(&app, &relayer).await? {
if !should_send_transaction(app, &relayer).await? {
tracing::warn!(id = tx.id, "Skipping transaction broadcast");

return Ok(());
Expand Down

0 comments on commit c6d458e

Please sign in to comment.