Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kunxian-xia committed Dec 27, 2023
1 parent 1abe85f commit 8b1542c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion halo2_proofs/src/plonk/circuit.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
use crate::circuit::layouter::SyncDeps;
use crate::dev::metadata;
use crate::plonk::shuffle;
use crate::{
circuit::{Layouter, Region, Value},
poly::Rotation,
};
use core::cmp::max;
use crate::plonk::shuffle;
use core::ops::{Add, Mul};
use ff::Field;
use sealed::SealedPhase;
Expand Down
2 changes: 1 addition & 1 deletion halo2_proofs/src/plonk/prover.rs
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
use crate::plonk::shuffle;
use ff::{Field, FromUniformBytes, PrimeField, WithSmallOrderMulGroup};

Check failure on line 2 in halo2_proofs/src/plonk/prover.rs

View workflow job for this annotation

GitHub Actions / Clippy (1.56.1)

unused import: `PrimeField`

error: unused import: `PrimeField` --> halo2_proofs/src/plonk/prover.rs:2:35 | 2 | use ff::{Field, FromUniformBytes, PrimeField, WithSmallOrderMulGroup}; | ^^^^^^^^^^

Check warning on line 2 in halo2_proofs/src/plonk/prover.rs

View workflow job for this annotation

GitHub Actions / Clippy (beta)

unused import: `PrimeField`

warning: unused import: `PrimeField` --> halo2_proofs/src/plonk/prover.rs:2:35 | 2 | use ff::{Field, FromUniformBytes, PrimeField, WithSmallOrderMulGroup}; | ^^^^^^^^^^
use group::Curve;
use rand_core::RngCore;
use std::collections::BTreeSet;
use std::ops::{Range, RangeTo};
use std::sync::Arc;
use std::{collections::HashMap, iter};
use crate::plonk::shuffle;

use super::{
circuit::{
Expand Down

0 comments on commit 8b1542c

Please sign in to comment.