Skip to content

Commit

Permalink
Update main.go
Browse files Browse the repository at this point in the history
Signed-off-by: Tiancheng Xie <[email protected]>
  • Loading branch information
niconiconi authored Jul 31, 2024
1 parent c627165 commit ce0f7a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/keccak_full/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -383,14 +383,14 @@ func main() {
println("Generating witness...")
os.WriteFile("witness.txt", wit.Serialize(), 0o644)

circuit_name := "keccak"
circuit_dir := "circuit.txt"
max_concurrency := 0
//circuit_name := "keccak"
//circuit_dir := "circuit.txt"
//max_concurrency := 0
//prover, err := integration.NewProver(circuit_dir, circuit_name, max_concurrency, true)
//if err != nil {
// panic(err)
//}
_, err := os.ReadFile("witness.txt")
_, err = os.ReadFile("witness.txt")
if err != nil {
panic(err)
}
Expand Down

0 comments on commit ce0f7a2

Please sign in to comment.