mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
In this commit, we modify the way we compute the starting ideal fee for the co-op close transaction. Before thsi commit, channel.CalcFee was used, which'll compute the fee based on the commitment transaction itself, rathern than the co-op close transaction. As the co-op close transaction is potentailly bigger (two P2TR outputs) than the commitment transaction, this can cause us to under estimate the fee, which can result in the fee rate being too low to propagate. To remedy this, we now compute a fee estimate from scratch, based on the delivery fees of the two parties. We also add a bug fix in the chancloser unit tests that wasn't caught due to loop variable shadowing. The wallet import itest has been updated as well, since we'll now pay 600 extra saothis to close the channel, since we're accounting for the added weight of the P2TR outputs. Fixes #6953
45 lines
1.5 KiB
Markdown
45 lines
1.5 KiB
Markdown
# Release Notes
|
|
|
|
## RPC/REST Server
|
|
|
|
- A `POST` URL mapping [was added to the REST version of the `QueryRoutes` call
|
|
(`POST /v1/graph/routes`)](https://github.com/lightningnetwork/lnd/pull/6926)
|
|
to make it possible to specify `route_hints` over REST.
|
|
|
|
## Bug Fixes
|
|
|
|
* [A bug has been fixed where the responder of a zero-conf channel could forget
|
|
about the channel after a hard-coded 2016 blocks.](https://github.com/lightningnetwork/lnd/pull/6998)
|
|
|
|
* [A bug where LND wouldn't send a ChannelUpdate during a channel open has
|
|
been fixed.](https://github.com/lightningnetwork/lnd/pull/6892)
|
|
|
|
* [A bug has been fixed that caused fee estimation to be incorrect for taproot
|
|
inputs when using the `SendOutputs` call.](https://github.com/lightningnetwork/lnd/pull/6941)
|
|
|
|
|
|
* [A bug has been fixed that could cause lnd to underpay for co-op close
|
|
transaction when or both of the outputs used a P2TR
|
|
addresss.](https://github.com/lightningnetwork/lnd/pull/6957)
|
|
|
|
|
|
## Taproot
|
|
|
|
* [Add `p2tr` address type to account
|
|
import](https://github.com/lightningnetwork/lnd/pull/6966).
|
|
|
|
**NOTE** for users running a remote signing setup: A manual account import is
|
|
necessary when upgrading from `lnd v0.14.x-beta` to `lnd v0.15.x-beta`, see [the
|
|
remote signing documentation for more
|
|
details](../remote-signing.md#migrating-a-remote-signing-setup-from-014x-to-015x).
|
|
|
|
## Performance improvements
|
|
|
|
* [Refactor hop hint selection
|
|
algorithm](https://github.com/lightningnetwork/lnd/pull/6914)
|
|
|
|
# Contributors (Alphabetical Order)
|
|
|
|
* Eugene Siegel
|
|
* Jordi Montes
|
|
* Oliver Gugger
|