Skip to content

Commit

Permalink
Feat/upgrade4 prover print more error (#1454)
Browse files Browse the repository at this point in the history
  • Loading branch information
amoylan2 authored Jul 19, 2024
1 parent 07dc2c9 commit 17b7e5c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 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/src/prover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ impl<'a> Prover<'a> {
task_type: task.task_type,
status: ProofStatus::Error,
failure_type: Some(failure_type),
failure_msg: Some(error.to_string()),
failure_msg: Some(format!("{:#}", error)),
..Default::default()
};
self.do_submit(&request)
Expand Down

0 comments on commit 17b7e5c

Please sign in to comment.