Browse Source

Minor change

Cesar Rodas 1 năm trước cách đây
mục cha
commit
6343d362c0
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      crates/storage/src/rocksdb.rs

+ 1 - 1
crates/storage/src/rocksdb.rs

@@ -45,7 +45,7 @@ fn nanoseconds_with_random() -> u128 {
 
     let ts = std::time::SystemTime::now()
         .duration_since(std::time::UNIX_EPOCH)
-        .unwrap()
+        .expect("time")
         .as_nanos();
 
     ts.checked_add(random_number).unwrap_or(ts)