File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1988,10 +1988,10 @@ impl ChannelMessageHandler for ChannelManager {
1988
1988
match channel_state. by_id . get_mut ( & msg. channel_id ) {
1989
1989
Some ( chan) => {
1990
1990
if chan. get_their_node_id ( ) != * their_node_id {
1991
- return Err ( HandleError { err : "Got a message for a channel from the wrong node!" , action : None } )
1991
+ return Err ( HandleError { err : "Got a message for a channel from the wrong node!" , action : Some ( msgs :: ErrorAction :: IgnoreError ) } )
1992
1992
}
1993
1993
if !chan. is_usable ( ) {
1994
- return Err ( HandleError { err : "Got an announcement_signatures before we were ready for it" , action : None } ) ;
1994
+ return Err ( HandleError { err : "Got an announcement_signatures before we were ready for it" , action : Some ( msgs :: ErrorAction :: IgnoreError ) } ) ;
1995
1995
}
1996
1996
1997
1997
let our_node_id = self . get_our_node_id ( ) ;
@@ -2013,7 +2013,7 @@ impl ChannelMessageHandler for ChannelManager {
2013
2013
contents : announcement,
2014
2014
} , self . get_channel_update ( chan) . unwrap ( ) ) // can only fail if we're not in a ready state
2015
2015
} ,
2016
- None => return Err ( HandleError { err : "Failed to find corresponding channel" , action : None } )
2016
+ None => return Err ( HandleError { err : "Failed to find corresponding channel" , action : Some ( msgs :: ErrorAction :: IgnoreError ) } )
2017
2017
}
2018
2018
} ;
2019
2019
let mut pending_events = self . pending_events . lock ( ) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments