Skip to content

Commit dfd7779

Browse files
committed
Remove reachable FundingTransactionReadyForSigning assertion
This is reachable if the event doesn't get handled and a channel reestablish occurs.
1 parent a07eb85 commit dfd7779

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lightning/src/ln/channelmanager.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9025,9 +9025,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
90259025
None,
90269026
);
90279027

9028-
if pending_events.contains(&event_action) {
9029-
debug_assert!(false, "FundingTransactionReadyForSigning should not have been queued already");
9030-
} else {
9028+
if !pending_events.contains(&event_action) {
90319029
pending_events.push_back(event_action);
90329030
}
90339031
} else {

0 commit comments

Comments
 (0)