We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 770740d commit 265c083Copy full SHA for 265c083
src/util/byte_utils.rs
@@ -1,5 +1,3 @@
1
-//TODO: Dont expose
2
-
3
#[inline]
4
pub fn slice_to_be16(v: &[u8]) -> u16 {
5
((v[0] as u16) << 8*1) |
src/util/mod.rs
@@ -1,8 +1,8 @@
-pub mod byte_utils;
pub mod transaction_utils;
-pub mod chacha20poly1305rfc;
pub mod events;
+pub(crate) mod byte_utils;
+pub(crate) mod chacha20poly1305rfc;
6
pub(crate) mod internal_traits;
7
8
#[cfg(test)]
0 commit comments