This commit is contained in:
wborgeaud 2021-07-22 16:09:54 +02:00
parent c729a3c235
commit ca3a2fcfc8
2 changed files with 0 additions and 7 deletions

View File

@ -309,12 +309,6 @@ mod tests {
type Gate = GMiMCGate<F, 4, R>; type Gate = GMiMCGate<F, 4, R>;
let gate = Gate::with_constants(constants.clone()); let gate = Gate::with_constants(constants.clone());
let config = CircuitConfig {
num_wires: 126,
num_routed_wires: 200,
..Default::default()
};
let permutation_inputs = (0..W).map(F::from_canonical_usize).collect::<Vec<_>>(); let permutation_inputs = (0..W).map(F::from_canonical_usize).collect::<Vec<_>>();
let mut witness = PartialWitness::new(); let mut witness = PartialWitness::new();

View File

@ -68,7 +68,6 @@ impl<F: Extendable<D>, const D: usize> CircuitBuilder<F, D> {
proof: &MerkleProofTarget, proof: &MerkleProofTarget,
) { ) {
let zero = self.zero(); let zero = self.zero();
let height = proof.siblings.len();
let mut state: HashTarget = self.hash_or_noop(leaf_data); let mut state: HashTarget = self.hash_or_noop(leaf_data);