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

Commit

Permalink
saving progress
Browse files Browse the repository at this point in the history
  • Loading branch information
ggkitsas committed Sep 7, 2023
1 parent 79c97e5 commit b5a4b16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zkevm-circuits/src/taiko_pi_circuit.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1854,7 +1854,7 @@ impl<F: Field> TaikoPiCircuitConfig<F> {
block_offset: usize,
test_public_data: &Option<PublicData<F>>,
challenges: &Challenges<Value<F>>,
) -> Result<AssignedCell<F, F>, Error> {
) -> Result<(), Error> {
// When in negative testing, we need to bypass the actual public_data with some
// wrong test data
let pb = test_public_data.as_ref().unwrap_or(public_data);
Expand Down Expand Up @@ -2126,7 +2126,7 @@ impl<F: Field> TaikoPiCircuitConfig<F> {
}
}

Ok(chain_id_cell.pop().unwrap())
Ok(())
}

fn assign(
Expand Down

0 comments on commit b5a4b16

Please sign in to comment.