Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
imabdulbasit committed Nov 30, 2024
1 parent 16ace39 commit 6054b29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sequencer/src/block/namespace_payload/iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ impl<'a> Iter<'a> {
}
}

impl<'a> Iterator for Iter<'a> {
impl Iterator for Iter<'_> {
type Item = Index;

fn next(&mut self) -> Option<Self::Item> {
Expand Down
1 change: 1 addition & 0 deletions sequencer/src/options.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#![allow(clippy::needless_lifetimes)]
use core::fmt::Display;
use jf_signature::{bls_over_bn254, schnorr};
use sequencer_utils::logging;
Expand Down
2 changes: 1 addition & 1 deletion types/src/v0/impls/block/namespace_payload/iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ impl<'a> Iter<'a> {
}
}

impl<'a> Iterator for Iter<'a> {
impl Iterator for Iter<'_> {
type Item = Index;

fn next(&mut self) -> Option<Self::Item> {
Expand Down

0 comments on commit 6054b29

Please sign in to comment.