Skip to content

Commit

Permalink
fix: Split RngCore and SeedableRng imports
Browse files Browse the repository at this point in the history
  • Loading branch information
CPerezz committed Feb 27, 2023
1 parent 3689925 commit e49cf60
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion halo2_proofs/src/plonk/vanishing/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ use maybe_rayon::{
#[cfg(feature = "multicore")]
use rand_chacha::ChaCha20Rng;
#[cfg(feature = "multicore")]
use rand_core::{RngCore, SeedableRng};
use rand_core::SeedableRng;

use rand_core::RngCore;

use super::Argument;
use crate::{
Expand Down

0 comments on commit e49cf60

Please sign in to comment.