Skip to content

Commit

Permalink
add print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jtguibas committed Oct 9, 2024
1 parent 1fc5916 commit 8b92d54
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions crates/recursion/gnark-ffi/go/sp1/prove.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ func ProveGroth16(dataDir string, witnessPath string) Proof {
// Generate the proof.
proof, err := groth16.Prove(globalR1cs, globalPk, witness)
if err != nil {
fmt.Printf("Error: %v\n", err)
panic(err)
}
fmt.Printf("Generating proof took %s\n", time.Since(start))
Expand Down

0 comments on commit 8b92d54

Please sign in to comment.