Skip to content

Commit fec74bc

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 b0381a9 commit fec74bc

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
@@ -359,7 +359,7 @@ static void handle_splice_abort(struct lightningd *ld,
359359
log_debug(channel->log, "made the socket pair");
360360

361361
if (peer_start_channeld(channel, new_peer_fd(tmpctx, fds[0]), NULL,
362-
true, false)) {
362+
false, false)) {
363363
log_info(channel->log, "Sending the peer fd to connectd");
364364
subd_send_msg(ld->connectd,
365365
take(towire_connectd_peer_connect_subd(NULL,

0 commit comments

Comments
 (0)