Skip to content

Commit 195921b

Browse files
authored
update documentation
1 parent 89bf57a commit 195921b

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

docs/lnd/release-notes/release-notes-0.18.3.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,15 @@
4848
bumping an anchor channel closing was not possible when no HTLCs were on the
4949
commitment when the channel was force closed.
5050

51+
* [Fixed](https://github.com/lightningnetwork/lnd/pull/8174) old payments that
52+
are stuck inflight. Though the root cause is unknown, it's possible the
53+
network result for a given HTLC attempt was not saved, which is now fixed.
54+
Check
55+
[here](https://github.com/lightningnetwork/lnd/pull/8174#issue-1992055103)
56+
for the details about the analysis, and
57+
[here](https://github.com/lightningnetwork/lnd/issues/8146) for a summary of
58+
the issue.
59+
5160
# New Features
5261
## Functional Enhancements
5362
## RPC Additions
@@ -58,6 +67,36 @@ commitment when the channel was force closed.
5867
send payment stream context, or automatically at the end of the timeout period
5968
if the user provided `timeout_seconds`.
6069

70+
* The [SendCoinsRequest](https://github.com/lightningnetwork/lnd/pull/8955) now
71+
takes an optional param `Outpoints`, which is a list of `*lnrpc.OutPoint`
72+
that specifies the coins from the wallet to be spent in this RPC call. To
73+
send selected coins to a given address with a given amount,
74+
```go
75+
req := &lnrpc.SendCoinsRequest{
76+
Addr: ...,
77+
Amount: ...,
78+
Outpoints: []*lnrpc.OutPoint{
79+
selected_wallet_utxo_1,
80+
selected_wallet_utxo_2,
81+
},
82+
}
83+
84+
SendCoins(req)
85+
```
86+
To send selected coins to a given address without change output,
87+
```go
88+
req := &lnrpc.SendCoinsRequest{
89+
Addr: ...,
90+
SendAll: true,
91+
Outpoints: []*lnrpc.OutPoint{
92+
selected_wallet_utxo_1,
93+
selected_wallet_utxo_2,
94+
},
95+
}
96+
97+
SendCoins(req)
98+
```
99+
61100
## lncli Additions
62101

63102
* [Added](https://github.com/lightningnetwork/lnd/pull/8491) the `cltv_expiry`
@@ -68,6 +107,18 @@ commitment when the channel was force closed.
68107
command returns the fee rate estimate for on-chain transactions in sat/kw and
69108
sat/vb to achieve a given confirmation target.
70109

110+
* [`sendcoins` now takes an optional utxo
111+
flag](https://github.com/lightningnetwork/lnd/pull/8955). This allows users
112+
to specify the coins that they want to use as inputs for the transaction. To
113+
send selected coins to a given address with a given amount,
114+
```sh
115+
sendcoins --addr YOUR_ADDR --amt YOUR_AMT --utxo selected_wallet_utxo1 --utxo selected_wallet_utxo2
116+
```
117+
To send selected coins to a given address without change output,
118+
```sh
119+
sendcoins --addr YOUR_ADDR --utxo selected_wallet_utxo1 --utxo selected_wallet_utxo2 --sweepall
120+
```
121+
71122
# Improvements
72123
## Functional Updates
73124

@@ -102,6 +153,9 @@ commitment when the channel was force closed.
102153
* [`ChanInfoRequest`](https://github.com/lightningnetwork/lnd/pull/8813)
103154
adds support for channel points.
104155

156+
* [BuildRoute](https://github.com/lightningnetwork/lnd/pull/8886) now supports
157+
inbound fees.
158+
105159
## lncli Updates
106160

107161
* [`importmc`](https://github.com/lightningnetwork/lnd/pull/8779) now accepts

0 commit comments

Comments
 (0)