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 3ef7f2e commit 204389fCopy full SHA for 204389f
channeld/channeld.c
@@ -5793,8 +5793,8 @@ static void peer_reconnect(struct peer *peer,
5793
* `commitment_signed`.
5794
*/
5795
if (next_commitment_number == peer->next_index[REMOTE] - 1) {
5796
- /* We completed opening, we don't re-transmit that one! */
5797
- 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)
5798
peer_failed_err(peer->pps,
5799
&peer->channel_id,
5800
"bad reestablish commitment_number: %"
0 commit comments