mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Enable clippy's uninlined_format_args linter (#7204)
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
@ -22,7 +22,7 @@ fn priority_bench(
|
||||
description: &str,
|
||||
input_data: (u128, u128, u128, u128),
|
||||
) {
|
||||
let group_id = format!("txpool | {}", description);
|
||||
let group_id = format!("txpool | {description}");
|
||||
|
||||
group.bench_function(group_id, |b| {
|
||||
b.iter(|| {
|
||||
@ -41,7 +41,7 @@ fn fee_jump_bench(
|
||||
description: &str,
|
||||
input_data: (u128, u128),
|
||||
) {
|
||||
let group_id = format!("txpool | {}", description);
|
||||
let group_id = format!("txpool | {description}");
|
||||
|
||||
group.bench_function(group_id, |b| {
|
||||
b.iter(|| {
|
||||
|
||||
Reference in New Issue
Block a user