Skip to content

Commit

Permalink
boom
Browse files Browse the repository at this point in the history
  • Loading branch information
jtguibas committed May 8, 2024
1 parent 1005d6f commit 3d85454
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion recursion/gnark/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ func (s *Server) Start(port string) {
router.HandleFunc("GET /healthz", s.healthz)
router.HandleFunc("POST /groth16/prove", s.handleGroth16Prove)

fmt.Printf("Starting server on %s\n", port)
fmt.Printf("[sp1] starting server on %s\n", port)
http.ListenAndServe(":"+port, router)
}

Expand Down
2 changes: 1 addition & 1 deletion sdk/src/artifacts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pub fn export_solidity_groth16_verifier(output_dir: impl Into<PathBuf>) -> Resul
}

std::fs::create_dir_all(&output_dir).context("Failed to create output directory.")?;
let output_path = output_dir.join("Groth16Verifier.sol");
let output_path = output_dir.join("SP1Verifier.sol");
std::fs::copy(&verifier_path, &output_path).context("Failed to copy verifier file.")?;
tracing::info!(
"exported verifier from {} to {}",
Expand Down

0 comments on commit 3d85454

Please sign in to comment.