diff --git a/docs/lnd/code_formatting_rules.md b/docs/lnd/code_formatting_rules.md index e534d9b8..8db66ce2 100644 --- a/docs/lnd/code_formatting_rules.md +++ b/docs/lnd/code_formatting_rules.md @@ -203,6 +203,9 @@ func foo(a, b, func baz(a, b, c) (d, error) { + +func longFunctionName( + a, b, c) (d, error) { ``` If a function declaration spans multiple lines the body should start with an diff --git a/docs/lnd/release-notes/release-notes-0.18.0.md b/docs/lnd/release-notes/release-notes-0.18.0.md index 6839045b..97fc6059 100644 --- a/docs/lnd/release-notes/release-notes-0.18.0.md +++ b/docs/lnd/release-notes/release-notes-0.18.0.md @@ -44,6 +44,14 @@ * [Ensure that a valid SCID](https://github.com/lightningnetwork/lnd/pull/8171) is used when marking a zombie edge as live. + +* [Remove sweep transactions of the + same exclusive group](https://github.com/lightningnetwork/lnd/pull/7800). + When using neutrino as a backend unconfirmed transactions have to be + removed from the wallet when a conflicting tx is confirmed. For other backends + these unconfirmed transactions are already removed. In addition a new + walletrpc endpoint `RemoveTransaction` is introduced which let one easily + remove unconfirmed transaction manually. # New Features ## Functional Enhancements