Move network_graph.rs to gossip.rs
[rust-lightning] / fuzz / src / process_network_graph.rs
index a71ae0e221b294cb302960d34bc4f6e966fa8124..118862569d039b47ea967c79207c463bbbe837f6 100644 (file)
@@ -5,7 +5,7 @@ use utils::test_logger;
 /// Actual fuzz test, method signature and name are fixed
 fn do_test(data: &[u8]) {
        let block_hash = bitcoin::BlockHash::default();
-       let network_graph = lightning::routing::network_graph::NetworkGraph::new(block_hash);
+       let network_graph = lightning::routing::gossip::NetworkGraph::new(block_hash);
        let rapid_sync = RapidGossipSync::new(&network_graph);
        let _ = rapid_sync.update_network_graph(data);
 }