Skip to content

Commit

Permalink
warning
Browse files Browse the repository at this point in the history
  • Loading branch information
burdges committed Jun 27, 2019
1 parent a380a7e commit 5e8b0b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pop.rs
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ where
if l as usize <= self.signers.len() { return; }
let l = l as usize - self.signers.len();
self.signers.reserve(l);
for i in 0..l {
for _i in 0..l {
self.signers.push(self.proofs_of_possession.new_signers());
}
}
Expand Down

0 comments on commit 5e8b0b7

Please sign in to comment.