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
if flags == (NegotiatingFundingFlags::OUR_INIT_SENT | NegotiatingFundingFlags::THEIR_INIT_SENT)) {
4051
-
panic!("Tried to get an initial commitment_signed messsage at a time other than immediately after initial handshake completion (or tried to get funding_created twice)");
4050
+
if flags == (NegotiatingFundingFlags::OUR_INIT_SENT | NegotiatingFundingFlags::THEIR_INIT_SENT)
4051
+
) {
4052
+
debug_assert!(false);
4053
+
return Err(ChannelError::Ignore("Tried to get an initial commitment_signed messsage at a time other than \
4054
+
immediately after initial handshake completion (or tried to get funding_created twice)".to_string()));
0 commit comments