Fix Field::random method declarations.

This commit is contained in:
Sean Bowe 2020-03-03 17:39:11 -07:00 committed by Jack Grigg
parent 2279da422c
commit 2d8033ef95
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ impl fmt::Display for Fr {
}
impl Field for Fr {
fn random<R: RngCore>(rng: &mut R) -> Self {
fn random<R: RngCore + ?std::marker::Sized>(rng: &mut R) -> Self {
Fr(Wrapping(rng.next_u32()) % MODULUS_R)
}