remove infinite loop from sudoku zkp example

This commit is contained in:
Matthew Liu
2023-08-11 00:40:37 -07:00
parent d64da6b10a
commit c6507e5067

View File

@@ -1,5 +1,3 @@
use std::{thread, time::Duration};
use sunscreen::{
types::zkp::NativeField, zkp_program, BackendField, Compiler, Runtime, ZkpProgramInput,
};
@@ -52,9 +50,6 @@ fn main() {
assert!(verify.is_ok());
loop {
thread::sleep(Duration::from_millis(5000));
}
}
#[zkp_program(backend = "bulletproofs")]