removed more unnecessary comments

This commit is contained in:
Matthew Liu
2023-07-18 13:53:30 -07:00
parent 282b38ac2d
commit 7900fff130
3 changed files with 1 additions and 8 deletions

View File

@@ -40,9 +40,6 @@ fn main() {
)
.unwrap();
// TODO: figure out how to set it up so that we can have multiple running at the same time
// maybe set up a server once at the start of the main method, then just have endpoints like
// /programs/{function name} to be able to see
let args2: Vec<FheProgramInput> = vec![a.clone().into(), c.into()];
runtime

View File

@@ -180,8 +180,6 @@ pub unsafe fn run_program_unchecked<E: Evaluator + Sync + Send>(
data.push(AtomicCell::new(None));
}
// TODO: maybe i can turn off the match statement? since the way i've been doing it, i've only been passing in
// something for debug_info if debugger is on
#[cfg(feature = "debugger")]
match debug_info {
Some(ref v) => {

View File

@@ -421,9 +421,7 @@ where
* Used for debugging. Calls `run_impl` with a secret key.
*/
// TODO: maybe SecretKey needs to be changed to PrivateKey?
// probably should: can always access a SecretKey via &PrivateKey.0
// don't think this should cause any security issues?
// TODO: change SecretKey to PrivateKey
pub fn debug_fhe_program<I>(
&self,
fhe_program: &CompiledFheProgram,