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 0379423 commit acd0277Copy full SHA for acd0277
channeld/channeld.c
@@ -5749,8 +5749,8 @@ static void peer_reconnect(struct peer *peer,
5749
* `commitment_signed`.
5750
*/
5751
if (next_commitment_number == peer->next_index[REMOTE] - 1) {
5752
- /* We completed opening, we don't re-transmit that one! */
5753
- 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)
5754
peer_failed_err(peer->pps,
5755
&peer->channel_id,
5756
"bad reestablish commitment_number: %"
0 commit comments