From e718219fecdc48682a9d89daa1de5d9c09d7db62 Mon Sep 17 00:00:00 2001 From: GitHub Date: Wed, 6 Aug 2025 00:29:13 +0000 Subject: [PATCH] update documentation --- docs/lnd/release-notes/release-notes-0.19.3.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/lnd/release-notes/release-notes-0.19.3.md b/docs/lnd/release-notes/release-notes-0.19.3.md index 24d60fec..60f7c6b9 100644 --- a/docs/lnd/release-notes/release-notes-0.19.3.md +++ b/docs/lnd/release-notes/release-notes-0.19.3.md @@ -25,10 +25,21 @@ messages simultaneously. The fix ensures only a single goroutine processes the backlog at any given time using an atomic flag. +- [Fixed a bug in `btcwallet` that caused issues with Tapscript addresses being + imported in a watch-only (e.g. remote-signing) + setup](https://github.com/lightningnetwork/lnd/pull/10119). + # New Features ## Functional Enhancements +- Previously, when sweeping non-time sensitive anchor outputs, they might be + grouped with other non-time sensitive outputs such as `to_local` outputs, + which potentially allow the sweeping tx to be pinned. This is now + [fixed](https://github.com/lightningnetwork/lnd/pull/10117) by moving sweeping + anchors into its own tx, which means the anchor outputs won't be swept in a + high fee environment. + ## RPC Additions ## lncli Additions @@ -62,4 +73,7 @@ ## Tooling and Documentation # Contributors (Alphabetical Order) -* Olaoluwa Osuntokun \ No newline at end of file + +* Olaoluwa Osuntokun +* Oliver Gugger +* Yong Yu