Skip to content

Commit

Permalink
reuse n
Browse files Browse the repository at this point in the history
  • Loading branch information
conradoplg committed Aug 19, 2023
1 parent 147a397 commit e98bc8d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frost-core/src/batch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ where

let mut VK_coeffs = Vec::with_capacity(n);
let mut VKs = Vec::with_capacity(n);
let mut R_coeffs = Vec::with_capacity(self.signatures.len());
let mut Rs = Vec::with_capacity(self.signatures.len());
let mut R_coeffs = Vec::with_capacity(n);
let mut Rs = Vec::with_capacity(n);
let mut P_coeff_acc = <<C::Group as Group>::Field>::zero();

for item in self.signatures.iter() {
Expand Down

0 comments on commit e98bc8d

Please sign in to comment.