Dont expose things that are purely internal-only
[rust-lightning] / src / util / byte_utils.rs
index 8779723fc2226849545b5e41ae5c420736dbcee5..74a01196f943433ec71dc6d8f22bd8cea6d7fd1d 100644 (file)
@@ -1,5 +1,3 @@
-//TODO: Dont expose
-
 #[inline]
 pub fn slice_to_be16(v: &[u8]) -> u16 {
        ((v[0] as u16) << 8*1) |