From 31643f3e60368647d0d63c75f2ba5802b99fafb9 Mon Sep 17 00:00:00 2001 From: Hossein Moghaddas Date: Mon, 13 Nov 2023 15:51:37 +0100 Subject: [PATCH] Make `fmt` happy --- poly-commit/src/linear_codes/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/poly-commit/src/linear_codes/mod.rs b/poly-commit/src/linear_codes/mod.rs index 7dddd64b..898a0807 100644 --- a/poly-commit/src/linear_codes/mod.rs +++ b/poly-commit/src/linear_codes/mod.rs @@ -326,7 +326,7 @@ where let n_rows = commitment.metadata.n_rows; let n_cols = commitment.metadata.n_cols; let root = &commitment.root; - + // 1. Arrange the coefficients of the polynomial into a matrix, // and apply encoding to get `ext_mat`. // 2. Create the Merkle tree from the hashes of each column. @@ -338,7 +338,7 @@ where let mat = Matrix::new_from_rows(mat); let ext_mat = Matrix::new_from_rows(ext_mat); let mut col_hashes: Vec = col_hashes.into_iter().map(|h| h.into()).collect(); // TODO cfg_inter - + let col_tree = create_merkle_tree::( &mut col_hashes, ck.leaf_hash_params(),