Skip to content

Commit 97bf93a

Browse files
committed
rustfmt: Run on crypto/mod.rs
1 parent 41e45d3 commit 97bf93a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lightning/src/crypto/chacha20.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ mod real_chacha {
120120
b1,b2,b3,b4,
121121
c1,c2,c3,c4,
122122
d1,d2,d3,d4
123-
];
123+
];
124124
for i in 0..lens.len() {
125125
$output[i * 4..(i + 1) * 4].copy_from_slice(&lens[i].to_le_bytes());
126126
}

lightning/src/crypto/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
use bitcoin::hashes::cmp::fixed_time_eq;
33

44
pub(crate) mod chacha20;
5+
pub(crate) mod chacha20poly1305rfc;
56
#[cfg(not(fuzzing))]
67
pub(crate) mod poly1305;
7-
pub(crate) mod chacha20poly1305rfc;
88
pub(crate) mod streams;
99
pub(crate) mod utils;

0 commit comments

Comments
 (0)