mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
2482de9cab
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
1.5 KiB
1.5 KiB
Release Notes
RPC/REST Server
- A
POST
URL mapping was added to the REST version of theQueryRoutes
call (POST /v1/graph/routes
) to make it possible to specifyroute_hints
over REST.
Bug Fixes
Taproot
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.
Performance improvements
Contributors (Alphabetical Order)
- Eugene Siegel
- Jordi Montes
- Oliver Gugger