Skip to content

Commit

Permalink
fix the missing clone
Browse files Browse the repository at this point in the history
  • Loading branch information
mmagician committed Mar 12, 2024
1 parent 8e0de99 commit 453df5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poly-commit/src/linear_codes/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ where
let ext_mat_cols = ext_mat.cols();
let leaves: Vec<H::Output> = cfg_into_iter!(ext_mat_cols)
.map(|col| {
H::evaluate(ck.col_hash_params(), col)
H::evaluate(ck.col_hash_params(), col.clone())
.map_err(|_| Error::HashingError)
.unwrap()
})
Expand Down

0 comments on commit 453df5b

Please sign in to comment.