Skip to content

Commit d6298d1

Browse files
committed
Minor refactoring
1 parent 3c0248a commit d6298d1

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

crates/bls_utils/src/verification.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,13 +233,11 @@ fn agg_final_keys(
233233
}
234234
final_cfs.push(sum);
235235
}
236-
let mut ff = Vec::new();
236+
let mut final_keys = Vec::new();
237237
for i in 0..ids.len() {
238238
let tmp = evaluate_polynomial_g1_projection(&final_cfs, ids[i]);
239-
println!("tmp[{}]: {:?}\n",i, hex::encode(tmp.to_bytes()));
240-
ff.push(tmp)
239+
final_keys.push(tmp);
241240
}
242-
let final_keys = ff;
243241
final_keys.iter().map(|x| G1Affine::from(x)).collect()
244242
}
245243

0 commit comments

Comments
 (0)