From df2702648b9c6f2f7cd8243dbc20461e78974222 Mon Sep 17 00:00:00 2001 From: Richard Holzeis Date: Mon, 18 Mar 2024 13:54:09 +0100 Subject: [PATCH] feat(webapp): Show settle txid on channel screen --- webapp/frontend/lib/settings/channel_screen.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/frontend/lib/settings/channel_screen.dart b/webapp/frontend/lib/settings/channel_screen.dart index e80fe10a0..e9557206d 100644 --- a/webapp/frontend/lib/settings/channel_screen.dart +++ b/webapp/frontend/lib/settings/channel_screen.dart @@ -146,6 +146,7 @@ class _ChannelDetailWidgetState extends State { buildCopyableTxId(context, "Funding TxId", widget.channel.fundTxid), buildCopyableTxId(context, "Buffer TxId", widget.channel.bufferTxid), buildCopyableTxId(context, "Close TxId", widget.channel.closeTxid), + buildCopyableTxId(context, "Settle TxId", widget.channel.settleTxid), Visibility( visible: widget.channel.channelState == ChannelState.signed && widget.channel.signedChannelState != null &&