mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 23:08:36 +01:00
Merge pull request #2543 from optout21/txabort-typo
[minor] Fix wrong msg type in SendTxAbort, typo
This commit is contained in:
commit
ef8945e339
2 changed files with 2 additions and 2 deletions
|
@ -1667,7 +1667,7 @@ pub enum MessageSendEvent {
|
|||
/// The node_id of the node which should receive this message
|
||||
node_id: PublicKey,
|
||||
/// 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.
|
||||
SendChannelReady {
|
||||
|
|
|
@ -1229,7 +1229,7 @@ pub trait ChannelMessageHandler : MessageSendEventsProvider {
|
|||
/// Handle an incoming `channel_ready` message from the given peer.
|
||||
fn handle_channel_ready(&self, their_node_id: &PublicKey, msg: &ChannelReady);
|
||||
|
||||
// Channl close:
|
||||
// Channel close:
|
||||
/// Handle an incoming `shutdown` message from the given peer.
|
||||
fn handle_shutdown(&self, their_node_id: &PublicKey, msg: &Shutdown);
|
||||
/// Handle an incoming `closing_signed` message from the given peer.
|
||||
|
|
Loading…
Add table
Reference in a new issue