Skip to content

Commit 5b880bc

Browse files
committed
channeld: tx_abort should skip reestablish
`tx_abort` should not send reestablish message and instead go into ‘reconnect only mode’ Changelog-None
1 parent 2b196f3 commit 5b880bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightningd/channel_control.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ static void handle_splice_abort(struct lightningd *ld,
371371
log_debug(channel->log, "made the socket pair");
372372

373373
if (peer_start_channeld(channel, new_peer_fd(tmpctx, fds[0]), NULL,
374-
true, false)) {
374+
false, false)) {
375375
log_info(channel->log, "Sending the peer fd to connectd");
376376
subd_send_msg(ld->connectd,
377377
take(towire_connectd_peer_connect_subd(NULL,

0 commit comments

Comments
 (0)