Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion provers/sgx/guest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub async fn main() -> Result<()> {
Command::Check => {
println!("Checking if bootstrap is readable");
load_bootstrap(&args.global_opts.secrets_dir)
.map_err(|err| anyhow!("check booststrap failed: {err}"))?;
.map_err(|err| anyhow!("check bootstrap failed: {err}"))?;
}
Command::Serve(server_args) => {
println!("Sgx proof server");
Expand Down
4 changes: 2 additions & 2 deletions provers/sgx/prover/src/local_prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ async fn setup(cur_dir: &Path, direct_mode: bool) -> ProverResult<(), String> {
.arg("sgx-guest.manifest")
.output()
.await
.map_err(|e| handle_gramine_error("Could not generate manfifest", e))?;
.map_err(|e| handle_gramine_error("Could not generate manifest", e))?;
handle_output(&output, "SGX generate manifest")?;

if !direct_mode {
Expand All @@ -404,7 +404,7 @@ async fn setup(cur_dir: &Path, direct_mode: bool) -> ProverResult<(), String> {
.arg("sgx-guest.manifest.sgx")
.output()
.await
.map_err(|e| handle_gramine_error("Could not sign manfifest", e))?;
.map_err(|e| handle_gramine_error("Could not sign manifest", e))?;
handle_output(&output, "SGX manifest sign")?;
}

Expand Down
Loading