Skip to content

Commit 7cb231b

Browse files
removed rng
1 parent 8f64d1c commit 7cb231b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/machine/system_calls.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9236,15 +9236,15 @@ impl Machine {
92369236
}
92379237
}
92389238

9239-
fn rng() -> &'static dyn SecureRandom {
9240-
use std::ops::Deref;
9241-
9242-
lazy_static! {
9243-
static ref RANDOM: SystemRandom = SystemRandom::new();
9244-
}
9245-
9246-
RANDOM.deref()
9247-
}
9239+
//fn rng() -> &'static dyn SecureRandom {
9240+
// use std::ops::Deref;
9241+
//
9242+
// lazy_static! {
9243+
// static ref RANDOM: SystemRandom = SystemRandom::new();
9244+
// }
9245+
//
9246+
// RANDOM.deref()
9247+
//}
92489248

92499249
struct MyKey<T: core::fmt::Debug + PartialEq>(T);
92509250

0 commit comments

Comments
 (0)