Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,770 changes: 1,171 additions & 599 deletions lightning/src/routing/gossip.rs

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lightning/src/routing/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

//! Structs and impls for receiving messages about the network and storing the topology live here.

pub mod utxo;
pub mod gossip;
mod log_approx;
pub mod router;
pub mod scoring;
mod log_approx;
#[cfg(test)]
pub(crate) mod test_utils;
pub mod utxo;
Loading