Skip to content

Commit

Permalink
Fix the CI errors (#78)
Browse files Browse the repository at this point in the history
* cargo fmt

* fix clippy error
  • Loading branch information
kunxian-xia authored Dec 7, 2023
1 parent 8deec99 commit f427aca
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion halo2_gadgets/src/sha256/table16.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use halo2_proofs::arithmetic::FieldExt as Field;
use ff::PrimeField as Field;
use halo2_proofs::{
circuit::{AssignedCell, Chip, Layouter, Region, Value},
plonk::{Advice, Any, Assigned, Column, ConstraintSystem, Error},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use super::super::{util::*, Gate};
use ff::PrimeField;
use crate::utilities::range_check;
use ff::PrimeField;
use halo2_proofs::plonk::{Constraint, Constraints, Expression};
use std::marker::PhantomData;

Expand Down
1 change: 0 additions & 1 deletion halo2_gadgets/src/sha256/table16/spread_table.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
use super::{util::*, AssignedBits, Field};
use ff::PrimeField;
use halo2_proofs::{
arithmetic::Field,
circuit::{Chip, Layouter, Region, Value},
plonk::{Advice, Column, ConstraintSystem, Error, TableColumn},
};
Expand Down

0 comments on commit f427aca

Please sign in to comment.