Skip to content

Commit 48c8918

Browse files
committed
chore: address clippy warnings
1 parent d50d5b2 commit 48c8918

File tree

1 file changed

+1
-1
lines changed
  • aggregation_mode/proof_aggregator/src/backend

1 file changed

+1
-1
lines changed

aggregation_mode/proof_aggregator/src/backend/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ impl ProofAggregator {
229229

230230
info!("Storing merkle paths for each task...",);
231231
let mut merkle_paths_for_tasks: Vec<(Uuid, Vec<u8>)> = vec![];
232-
for (idx, task_id) in tasks_id.into_iter().enumerate() {
232+
for (idx, task_id) in tasks_id.iter().enumerate() {
233233
let Some(proof) = merkle_tree.get_proof_by_pos(idx) else {
234234
warn!("Proof not found for task id {task_id}");
235235
continue;

0 commit comments

Comments
 (0)