lnd/docs/release-notes/release-notes-0.14.2.md
Olaoluwa Osuntokun 80e304573c
lnwallet: increase legacy fee limit threshold to 1k sats
In this commit, we increase the legacy fee limit threshold (the amount
below which we'll allow 100% of funds to go to fees for the non-v2 RPC
calls) from 50 sats to 1k sats.
2022-02-03 11:54:01 -08:00

5.8 KiB

Release Notes

Remote signing

The remote signing setup was simplified in that the signing node now does not need to be hooked up to its own chain backend. A new mock chain backend can be specified with --bitcoin.node=nochainbackend. That way a wallet will be created and all signing RPCs work but the node will not look at any chain data. It can therefore be fully offline except for a single incoming gRPC connection from the watch-only node.

Wallet

  • A bug that prevented opening anchor-based channels from external wallets when the internal wallet was empty even though the transaction contained a sufficiently large output belonging to the internal wallet was fixed. In other words, freshly-installed LND can now be initialized with multiple channels from an external (e.g. hardware) wallet in a single transaction.

  • A bug that allowed fees to be up to 100% of the payment amount was fixed by introducing a more sane default value of 5% routing fees (except for small amounts <= 1k satoshis where the 100% routing fees are kept to accommodate for the base fee in channels). To avoid falling back to a default value, users should always set their own fee limits by using the --fee_limit or --fee_limit_percent flags on the lncli payinvoice, lncli sendpayment and lncli queryroutes commands. Users of the gRPC or REST API should set the fee_limit field on the corresponding calls (SendPayment, SendPaymentSync, QueryRoutes).

Database

Build System

Bug fixes

RPC Server

Routing

Documentation

Contributors (Alphabetical Order)

  • Andras Banki-Horvath
  • Andreas Schjønhaug
  • Bjarne Magnussen
  • Daniel McNally
  • Elle Mouton
  • Erik Ek
  • Harsha Goli
  • Joost Jager
  • Martin Habovštiak
  • Naveen Srinivasan
  • Oliver Gugger
  • Olaoluwa Osuntokun
  • Yong Yu