We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eba9f51 commit 83c6de7Copy full SHA for 83c6de7
motoko/vetkd/src/system_api/src/lib.rs
@@ -33,7 +33,7 @@ lazy_static::lazy_static! {
33
}
34
35
thread_local! {
36
- static RNG: RefCell<Option<ChaCha20Rng>> = RefCell::new(None);
+ static RNG: RefCell<Option<ChaCha20Rng>> = const { RefCell::new(None) }
37
38
39
#[update]
@@ -102,7 +102,7 @@ fn ensure_bls12_381_g2_test_key_1(key_id: VetKDKeyId) {
102
103
104
105
-fn ensure_derivation_path_is_valid(derivation_path: &Vec<Vec<u8>>) {
+fn ensure_derivation_path_is_valid(derivation_path: &[Vec<u8>]) {
106
if derivation_path.len() > 255 {
107
ic_cdk::trap("derivation path too long")
108
0 commit comments