diff options
| -rw-r--r-- | zkvms_guest_io/src/main.rs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/zkvms_guest_io/src/main.rs b/zkvms_guest_io/src/main.rs index 4f4db75..86e8dde 100644 --- a/zkvms_guest_io/src/main.rs +++ b/zkvms_guest_io/src/main.rs @@ -64,12 +64,7 @@ fn main() { print!("== Executing {} ==\n{}", guest, stdout); if !output.status.success() { - // Make sure we print a message before failing - // There could be a race condition, where we fail, then while - // panic is doing it's thing, the main thread exits. - println!("Program didn't exist successfully!"); fail.store(true, Ordering::Relaxed); - panic!(); } }) .expect("failed to spawn thread"), |
