Skip to content

Commit

Permalink
Add the type Randomness
Browse files Browse the repository at this point in the history
  • Loading branch information
autquis committed Nov 15, 2023
1 parent 156c9ea commit 7c5435e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion poly-commit/src/linear_codes/data_structures.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ where
F: PrimeField,
H: CRHScheme,
{
type Randomness = ();
fn empty() -> Self {
unimplemented!()
}
Expand All @@ -114,7 +115,7 @@ where
_has_degree_bound: bool,
_num_vars: Option<usize>,
_rng: &mut R,
) -> Self {
) -> Self::Randomness {
unimplemented!()
}
}
Expand Down

0 comments on commit 7c5435e

Please sign in to comment.