From: Marty Jones Date: Wed, 22 Apr 2020 00:29:46 +0000 (-0400) Subject: Update lightning/src/util/byte_utils.rs X-Git-Tag: v0.0.12~79^2 X-Git-Url: http://git.bitcoin.ninja/?a=commitdiff_plain;h=f5a6796a47aee0b7fe491a6bb61debe7a1d81e53;p=rust-lightning Update lightning/src/util/byte_utils.rs --- diff --git a/lightning/src/util/byte_utils.rs b/lightning/src/util/byte_utils.rs index 240480dff..eae9f0572 100644 --- a/lightning/src/util/byte_utils.rs +++ b/lightning/src/util/byte_utils.rs @@ -122,6 +122,5 @@ mod tests { assert_eq!(be48_to_array(0xdeadbeef1bad), [0xde, 0xad, 0xbe, 0xef, 0x1b, 0xad]); assert_eq!(be64_to_array(0xdeadbeef1bad1dea), [0xde, 0xad, 0xbe, 0xef, 0x1b, 0xad, 0x1d, 0xea]); assert_eq!(le64_to_array(0xdeadbeef1bad1dea), [0xea, 0x1d, 0xad, 0x1b, 0xef, 0xbe, 0xad, 0xde]); - } -} \ No newline at end of file +}