We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4d62c1 commit 451c915Copy full SHA for 451c915
lightning-background-processor/src/lib.rs
@@ -90,7 +90,6 @@ const FIRST_NETWORK_PRUNE_TIMER: u64 = 60;
90
const FIRST_NETWORK_PRUNE_TIMER: u64 = 1;
91
92
/// Either [`P2PGossipSync`] or [`RapidGossipSync`].
93
-#[allow(missing_docs)]
94
pub enum GossipSync<
95
P: Deref<Target = P2PGossipSync<G, A, L>>,
96
R: Deref<Target = RapidGossipSync<G, L>>,
@@ -99,7 +98,9 @@ pub enum GossipSync<
99
98
L: Deref,
100
>
101
where A::Target: chain::Access, L::Target: Logger {
+ /// Gossip sync via the lightning peer-to-peer network as defined by BOLT 7.
102
P2P(P),
103
+ /// Rapid gossip sync from a trusted server.
104
Rapid(R),
105
}
106
0 commit comments