Skip to content

Commit 4138f6c

Browse files
committed
Fix linter
1 parent 62de030 commit 4138f6c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/rpc-tester/src/report.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pub(crate) fn report(results_by_block: ReportResults) -> eyre::Result<()> {
3232
Err(TestError::Rpc1Err(err) | TestError::Rpc2Err(err)) => {
3333
passed_title = false;
3434
println!("\n{title} ❌");
35-
println!(" {name}: ❌ {}", err);
35+
println!(" {name}: ❌ {err}");
3636
}
3737
}
3838
}

crates/rpc-tester/src/tester.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ where
169169

170170
#[rustfmt::skip]
171171
report(vec![(
172-
format!("{}..={}", start, end),
172+
format!("{start}..={end}"),
173173
futures::future::join_all([
174174
get_logs!(self, Filter::new().from_block(start).to_block(end)
175175
)])

0 commit comments

Comments
 (0)