You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ln/channelmanager.rs
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1445,12 +1445,13 @@ impl ChannelManager {
1445
1445
match channel_state.by_id.get_mut(&msg.temporary_channel_id){
1446
1446
Some(chan) => {
1447
1447
if chan.get_their_node_id() != *their_node_id {
1448
-
returnErr(HandleError{err:"Got a message for a channel from the wrong node!",action:None});
1448
+
//TODO: see issue #153 , need a consistent behavior on obnoxious behavior from random node
1449
+
returnErr(MsgHandleErrInternal::from_no_close(HandleError{err:"Got a message for a channel from the wrong node!",action:Some(msgs::ErrorAction::IgnoreError)}));
0 commit comments