Skip to content

Commit eece709

Browse files
committed
rustfmt: fuzz/src/process_network_graph.rs
1 parent 44f5162 commit eece709

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fuzz/src/process_network_graph.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ use crate::utils::test_logger;
66
/// Actual fuzz test, method signature and name are fixed
77
fn do_test<Out: test_logger::Output>(data: &[u8], out: Out) {
88
let logger = test_logger::TestLogger::new("".to_owned(), out);
9-
let network_graph = lightning::routing::gossip::NetworkGraph::new(bitcoin::Network::Bitcoin, &logger);
9+
let network_graph =
10+
lightning::routing::gossip::NetworkGraph::new(bitcoin::Network::Bitcoin, &logger);
1011
let rapid_sync = RapidGossipSync::new(&network_graph, &logger);
1112
let _ = rapid_sync.update_network_graph(data);
1213
}

rustfmt_excluded_files

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
./bench/benches/bench.rs
2-
./fuzz/src/process_network_graph.rs
32
./fuzz/src/refund_deser.rs
43
./fuzz/src/router.rs
54
./fuzz/src/utils/mod.rs

0 commit comments

Comments
 (0)