Merge pull request #2543 from optout21/txabort-typo

[minor] Fix wrong msg type in SendTxAbort, typo
This commit is contained in:
Matt Corallo 2023-09-01 15:13:54 +00:00 committed by GitHub
commit ef8945e339
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -1667,7 +1667,7 @@ pub enum MessageSendEvent {
/// The node_id of the node which should receive this message /// The node_id of the node which should receive this message
node_id: PublicKey, node_id: PublicKey,
/// The message which should be sent. /// The message which should be sent.
msg: msgs::TxAddInput, msg: msgs::TxAbort,
}, },
/// Used to indicate that a channel_ready message should be sent to the peer with the given node_id. /// Used to indicate that a channel_ready message should be sent to the peer with the given node_id.
SendChannelReady { SendChannelReady {

View file

@ -1229,7 +1229,7 @@ pub trait ChannelMessageHandler : MessageSendEventsProvider {
/// Handle an incoming `channel_ready` message from the given peer. /// Handle an incoming `channel_ready` message from the given peer.
fn handle_channel_ready(&self, their_node_id: &PublicKey, msg: &ChannelReady); fn handle_channel_ready(&self, their_node_id: &PublicKey, msg: &ChannelReady);
// Channl close: // Channel close:
/// Handle an incoming `shutdown` message from the given peer. /// Handle an incoming `shutdown` message from the given peer.
fn handle_shutdown(&self, their_node_id: &PublicKey, msg: &Shutdown); fn handle_shutdown(&self, their_node_id: &PublicKey, msg: &Shutdown);
/// Handle an incoming `closing_signed` message from the given peer. /// Handle an incoming `closing_signed` message from the given peer.