Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzejkop committed Feb 29, 2024
1 parent 9ee5ae0 commit fd769f8
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 @@ -38,7 +38,7 @@ async fn escalate_txs(app: &App) -> eyre::Result<()> {
let mut futures = FuturesUnordered::new();

for (relayer_id, txs) in txs_for_escalation {
futures.push(escalate_relayer_txs(&app, relayer_id, txs));
futures.push(escalate_relayer_txs(app, relayer_id, txs));
}

while let Some(result) = futures.next().await {
Expand Down

0 comments on commit fd769f8

Please sign in to comment.