X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning%2Fsrc%2Fln%2Fmsgs.rs;h=6cbcd9787008f30901ddbed5232ada6c93d0e71f;hb=c86950d5104666b059c4fbe1248afc04610c45c5;hp=278352845ac7b81cba7d970b013df9c464870457;hpb=7eac8977467c06fb5746cb2ec0789ce1f37e02fa;p=rust-lightning diff --git a/lightning/src/ln/msgs.rs b/lightning/src/ln/msgs.rs index 27835284..6cbcd978 100644 --- a/lightning/src/ln/msgs.rs +++ b/lightning/src/ln/msgs.rs @@ -814,7 +814,7 @@ pub struct QueryShortChannelIds { pub short_channel_ids: Vec, } -/// A [`reply_short_channel_ids_end message`] is sent as a reply to a +/// A [`reply_short_channel_ids_end`] message is sent as a reply to a /// message. The query recipient makes a best /// effort to respond based on their local network view which may not be /// a perfect view of the network. @@ -934,9 +934,9 @@ pub enum OptionalField { pub trait ChannelMessageHandler : MessageSendEventsProvider { // Channel init: /// Handle an incoming `open_channel` message from the given peer. - fn handle_open_channel(&self, their_node_id: &PublicKey, their_features: InitFeatures, msg: &OpenChannel); + fn handle_open_channel(&self, their_node_id: &PublicKey, msg: &OpenChannel); /// Handle an incoming `accept_channel` message from the given peer. - fn handle_accept_channel(&self, their_node_id: &PublicKey, their_features: InitFeatures, msg: &AcceptChannel); + fn handle_accept_channel(&self, their_node_id: &PublicKey, msg: &AcceptChannel); /// Handle an incoming `funding_created` message from the given peer. fn handle_funding_created(&self, their_node_id: &PublicKey, msg: &FundingCreated); /// Handle an incoming `funding_signed` message from the given peer. @@ -946,7 +946,7 @@ pub trait ChannelMessageHandler : MessageSendEventsProvider { // Channl close: /// Handle an incoming `shutdown` message from the given peer. - fn handle_shutdown(&self, their_node_id: &PublicKey, their_features: &InitFeatures, msg: &Shutdown); + fn handle_shutdown(&self, their_node_id: &PublicKey, msg: &Shutdown); /// Handle an incoming `closing_signed` message from the given peer. fn handle_closing_signed(&self, their_node_id: &PublicKey, msg: &ClosingSigned);