Skip to content

Commit fb9f2f1

Browse files
committed
style(deps): fix benches clippy warning
Signed-off-by: Lorenzo Delgado <[email protected]>
1 parent cedb211 commit fb9f2f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tap_core/benches/timeline_aggretion_protocol_benchmark.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub fn criterion_benchmark(c: &mut Criterion) {
7272
.collect::<Vec<_>>();
7373

7474
rav_group.bench_function(
75-
&format!("Create RAV w/ 2^{} receipt's", log_number_of_receipts),
75+
format!("Create RAV w/ 2^{} receipt's", log_number_of_receipts),
7676
|b| {
7777
b.iter(|| {
7878
ReceiptAggregateVoucher::aggregate_receipts(
@@ -92,7 +92,7 @@ pub fn criterion_benchmark(c: &mut Criterion) {
9292
.unwrap();
9393

9494
rav_group.bench_function(
95-
&format!("Validate RAV w/ 2^{} receipt's", log_number_of_receipts),
95+
format!("Validate RAV w/ 2^{} receipt's", log_number_of_receipts),
9696
|b| b.iter(|| black_box(&signed_rav).verify(&domain_seperator, black_box(address))),
9797
);
9898
}

0 commit comments

Comments
 (0)