We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ec33ba commit 4b41600Copy full SHA for 4b41600
lightning/src/ln/msgs.rs
@@ -139,16 +139,10 @@ pub struct FundingSigned {
139
140
/// A funding_locked message to be sent or received from a peer
141
#[derive(Clone, PartialEq)]
142
+#[allow(missing_docs)]
143
pub struct FundingLocked {
- pub(crate) channel_id: [u8; 32],
144
- pub(crate) next_per_commitment_point: PublicKey,
145
-}
146
-
147
-impl FundingLocked {
148
- /// The channel ID
149
- pub fn channel_id(&self) -> [u8; 32] {
150
- self.channel_id
151
- }
+ pub channel_id: [u8; 32],
+ pub next_per_commitment_point: PublicKey,
152
}
153
154
/// A shutdown message to be sent or received from a peer
0 commit comments