Skip to content

Commit

Permalink
rename to use singular of labeled_commitment
Browse files Browse the repository at this point in the history
  • Loading branch information
mmagician committed Nov 14, 2023
1 parent 31b7179 commit 1befeee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions poly-commit/src/linear_codes/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,8 @@ where
let mut proof_array = LPCPArray::default();
let mut states = states.into_iter();

for labeled_commitments in commitments {
let commitment = labeled_commitments.commitment();
for labeled_commitment in commitments {
let commitment = labeled_commitment.commitment();
let n_rows = commitment.metadata.n_rows;
let n_cols = commitment.metadata.n_cols;
let root = &commitment.root;
Expand Down

0 comments on commit 1befeee

Please sign in to comment.