Skip to content

Commit b7b999e

Browse files
committedNov 1, 2024··
fix: don't randomize the global context twice
1 parent bb4972f commit b7b999e

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed
 

‎src/context.rs

+1-11
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,7 @@ pub mod global {
4646
static ONCE: Once = Once::new();
4747
static mut CONTEXT: Option<Secp256k1<All>> = None;
4848
ONCE.call_once(|| unsafe {
49-
let mut ctx = Secp256k1::new();
50-
#[cfg(all(
51-
not(target_arch = "wasm32"),
52-
feature = "rand",
53-
feature = "std",
54-
not(feature = "global-context-less-secure")
55-
))]
56-
{
57-
ctx.randomize(&mut rand::thread_rng());
58-
}
59-
CONTEXT = Some(ctx);
49+
CONTEXT = Some(Secp256k1::new());
6050
});
6151
unsafe { CONTEXT.as_ref().unwrap() }
6252
}

0 commit comments

Comments
 (0)
Please sign in to comment.