We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab15331 commit c51968bCopy full SHA for c51968b
channeld/channeld.c
@@ -5791,8 +5791,8 @@ static void peer_reconnect(struct peer *peer,
5791
* `commitment_signed`.
5792
*/
5793
if (next_commitment_number == peer->next_index[REMOTE] - 1) {
5794
- /* We completed opening, we don't re-transmit that one! */
5795
- if (next_commitment_number == 0)
+ /* We completed opening, we don't re-transmit that one unless negotiating a splice. */
+ if (remote_next_funding == NULL && next_commitment_number == 0)
5796
peer_failed_err(peer->pps,
5797
&peer->channel_id,
5798
"bad reestablish commitment_number: %"
0 commit comments