mirror of
https://github.com/Sunscreen-tech/Sunscreen.git
synced 2026-01-14 08:07:56 -05:00
removed more unnecessary comments
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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) => {
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user