mirror of
https://github.com/lightningnetwork/lnd.git
synced 2026-08-16 13:00:19 +02:00
Merge f19cea4f83 into 8ea98fd522
This commit is contained in:
commit
63cf4e272e
2 changed files with 8 additions and 2 deletions
|
|
@ -106,6 +106,12 @@
|
|||
ensures dependencies are properly freed and logs the panic trace for
|
||||
debugging.
|
||||
|
||||
* [Improved error message clarity](https://github.com/lightningnetwork/lnd/pull/10607)
|
||||
when a transaction would cause a peer's balance to fall below the channel
|
||||
reserve. The error message has been updated to be more user-friendly,
|
||||
notifying that the transaction was rejected because the minimum safety
|
||||
balance must be preserved.
|
||||
|
||||
## RPC Updates
|
||||
|
||||
* The `EstimateRouteFee` RPC now implements an [LSP detection
|
||||
|
|
|
|||
|
|
@ -66,8 +66,8 @@ var (
|
|||
|
||||
// ErrBelowChanReserve is returned when a proposed HTLC would cause
|
||||
// one of the peer's funds to dip below the channel reserve limit.
|
||||
ErrBelowChanReserve = fmt.Errorf("commitment transaction dips peer " +
|
||||
"below chan reserve")
|
||||
ErrBelowChanReserve = fmt.Errorf("transaction rejected: " +
|
||||
"peer must preserve its minimum safety balance")
|
||||
|
||||
// ErrBelowMinHTLC is returned when a proposed HTLC has a value that
|
||||
// is below the minimum HTLC value constraint for either us or our
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue