Skip to content

Commit

Permalink
feat: support debugging of recursive circuits in prover_cli (#2217)
Browse files Browse the repository at this point in the history
## What ❔

* Now prover_cli will also debug recursive circuits (for example
recursion tip)
  • Loading branch information
mm-zk authored Jun 12, 2024
1 parent f529a45 commit 7d2e12d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions prover/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion prover/prover_cli/src/commands/debug_proof.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub(crate) async fn run(_args: Args) -> anyhow::Result<()> {
#[cfg(feature = "verbose_circuits")]
{
let buffer = std::fs::read(_args.file).unwrap();
zkevm_test_harness::debug::debug_basic_circuit(&buffer);
zkevm_test_harness::debug::debug_circuit(&buffer);
Ok(())
}
}

0 comments on commit 7d2e12d

Please sign in to comment.