Skip to content

Commit 83c6de7

Browse files
committed
make clippy happy
1 parent eba9f51 commit 83c6de7

File tree

1 file changed

+2
-2
lines changed
  • motoko/vetkd/src/system_api/src

1 file changed

+2
-2
lines changed

motoko/vetkd/src/system_api/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ lazy_static::lazy_static! {
3333
}
3434

3535
thread_local! {
36-
static RNG: RefCell<Option<ChaCha20Rng>> = RefCell::new(None);
36+
static RNG: RefCell<Option<ChaCha20Rng>> = const { RefCell::new(None) }
3737
}
3838

3939
#[update]
@@ -102,7 +102,7 @@ fn ensure_bls12_381_g2_test_key_1(key_id: VetKDKeyId) {
102102
}
103103
}
104104

105-
fn ensure_derivation_path_is_valid(derivation_path: &Vec<Vec<u8>>) {
105+
fn ensure_derivation_path_is_valid(derivation_path: &[Vec<u8>]) {
106106
if derivation_path.len() > 255 {
107107
ic_cdk::trap("derivation path too long")
108108
}

0 commit comments

Comments
 (0)