Skip to content

Commit

Permalink
fix clippy from upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
DreamWuGit committed Aug 16, 2024
1 parent 0eebb87 commit 6a48d01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aggregator/src/chunk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ impl ChunkInfo {
b.transactions
.iter()
.enumerate()
.filter(|(idx, tx)| !tx.is_l1_tx())
.filter(|(_idx, tx)| !tx.is_l1_tx())
.flat_map(|(idx, tx)| {
tx.to_eth_tx(
b.header.hash,
Expand Down

0 comments on commit 6a48d01

Please sign in to comment.