Skip to content
This repository has been archived by the owner on Jul 5, 2024. It is now read-only.

Commit

Permalink
chore: fix clippy and wasm error
Browse files Browse the repository at this point in the history
  • Loading branch information
KimiWu123 committed Jan 28, 2024
1 parent 0e4aca8 commit 74c6db3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions circuit-benchmarks/src/super_circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ mod tests {
max_bytecode: 512,
max_evm_rows: 0,
max_keccak_rows: 0,
max_vertical_circuit_rows: 0,
};
let (_, circuit, instance, _) =
SuperCircuit::build(block, circuits_params, Fr::from(0x100)).unwrap();
Expand Down
7 changes: 4 additions & 3 deletions zkevm-circuits/src/sig_circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ mod utils;
use crate::{
evm_circuit::{util::not, EvmCircuit},
keccak_circuit::KeccakCircuit,
sig_circuit::ecdsa::ecdsa_verify_no_pubkey_check,
sig_circuit::{
ecdsa::ecdsa_verify_no_pubkey_check,
utils::{calc_required_advices, FpChip},
},
table::{KeccakTable, SigTable},
util::{word::Word, Challenges, Expr, SubCircuit, SubCircuitConfig},
};
Expand All @@ -40,8 +43,6 @@ use halo2_ecc::{
FieldChip,
},
};

#[cfg(any(feature = "test", test, feature = "test-circuits"))]
pub(crate) use utils::*;

use halo2_proofs::{
Expand Down

0 comments on commit 74c6db3

Please sign in to comment.