Skip to content

Commit

Permalink
Fix tests: sponge config for univariate ligero
Browse files Browse the repository at this point in the history
  • Loading branch information
autquis committed Jan 9, 2024
1 parent 370e77c commit 2bcff80
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions poly-commit/src/linear_codes/univariate_ligero/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,22 @@ mod tests {
}

type MTConfig = MerkleTreeParams;
type Sponge = PoseidonSponge<Fr>;
type Sponge<F> = PoseidonSponge<F>;

type LigeroPCS = LinearCodePCS<
UnivariateLigero<Fr, MTConfig, Sponge, DensePolynomial<Fr>, ColHasher<Fr, Blake2s256>>,
UnivariateLigero<Fr, MTConfig, Sponge<Fr>, DensePolynomial<Fr>, ColHasher<Fr, Blake2s256>>,
Fr,
DensePolynomial<Fr>,
Sponge,
Sponge<Fr>,
MTConfig,
ColHasher<Fr, Blake2s256>,
>;

type LigeroPcsF<F> = LinearCodePCS<
UnivariateLigero<F, MTConfig, Sponge, DensePolynomial<F>, ColHasher<F, Blake2s256>>,
UnivariateLigero<F, MTConfig, Sponge<F>, DensePolynomial<F>, ColHasher<F, Blake2s256>>,
F,
DensePolynomial<F>,
Sponge,
Sponge<F>,
MTConfig,
ColHasher<F, Blake2s256>,
>;
Expand Down

0 comments on commit 2bcff80

Please sign in to comment.