Skip to content

Commit 86ecb59

Browse files
Merge pull request #679 from lightninglabs/docs-lnd
Update lnd documentation
2 parents e4f390c + d1fda1e commit 86ecb59

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

docs/lnd/INSTALL.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -100,16 +100,16 @@ the following commands for your OS:
100100
<summary>Linux (x86-64)</summary>
101101

102102
```
103-
wget https://dl.google.com/go/go1.22.4.linux-amd64.tar.gz
104-
sha256sum go1.22.4.linux-amd64.tar.gz | awk -F " " '{ print $1 }'
103+
wget https://dl.google.com/go/go1.22.5.linux-amd64.tar.gz
104+
sha256sum go1.22.5.linux-amd64.tar.gz | awk -F " " '{ print $1 }'
105105
```
106106

107107
The final output of the command above should be
108-
`ba79d4526102575196273416239cca418a651e049c2b099f3159db85e7bade7d`. If it
108+
`904b924d435eaea086515bc63235b192ea441bd8c9b198c507e85009e6e4c7f0`. If it
109109
isn't, then the target REPO HAS BEEN MODIFIED, and you shouldn't install
110110
this version of Go. If it matches, then proceed to install Go:
111111
```
112-
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.22.4.linux-amd64.tar.gz
112+
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.22.5.linux-amd64.tar.gz
113113
export PATH=$PATH:/usr/local/go/bin
114114
```
115115
</details>
@@ -118,16 +118,16 @@ the following commands for your OS:
118118
<summary>Linux (ARMv6)</summary>
119119

120120
```
121-
wget https://dl.google.com/go/go1.22.4.linux-armv6l.tar.gz
122-
sha256sum go1.22.4.linux-armv6l.tar.gz | awk -F " " '{ print $1 }'
121+
wget https://dl.google.com/go/go1.22.5.linux-armv6l.tar.gz
122+
sha256sum go1.22.5.linux-armv6l.tar.gz | awk -F " " '{ print $1 }'
123123
```
124124

125125
The final output of the command above should be
126-
`e2b143fbacbc9cbd448e9ef41ac3981f0488ce849af1cf37e2341d09670661de`. If it
126+
`8c4587cf3e63c9aefbcafa92818c4d9d51683af93ea687bf6c7508d6fa36f85e`. If it
127127
isn't, then the target REPO HAS BEEN MODIFIED, and you shouldn't install
128128
this version of Go. If it matches, then proceed to install Go:
129129
```
130-
sudo rm -rf /usr/local/go && tar -C /usr/local -xzf go1.22.4.linux-armv6l.tar.gz
130+
sudo rm -rf /usr/local/go && tar -C /usr/local -xzf go1.22.5.linux-armv6l.tar.gz
131131
export PATH=$PATH:/usr/local/go/bin
132132
```
133133

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,10 @@ commitment when the channel was force closed.
118118
* [Added](https://github.com/lightningnetwork/lnd/pull/8836) a new failure
119119
reason `FailureReasonCanceled` to the list of payment failure reasons. It
120120
indicates that a payment was manually cancelled by the user.
121+
122+
* [Update the version](https://github.com/lightningnetwork/lnd/pull/8974) of
123+
[falafel](https://github.com/lightninglabs/falafel) used to generate JSON/wasm
124+
stubs. This latest version of falafel also supports proto3 optional fields.
121125

122126
## Breaking Changes
123127
## Performance Improvements

0 commit comments

Comments
 (0)