Skip to content

Commit

Permalink
Merge pull request #679 from lightninglabs/docs-lnd
Browse files Browse the repository at this point in the history
Update lnd documentation
  • Loading branch information
github-actions[bot] authored Aug 6, 2024
2 parents e4f390c + d1fda1e commit 86ecb59
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/lnd/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,16 +100,16 @@ the following commands for your OS:
<summary>Linux (x86-64)</summary>

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

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

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

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

Expand Down
4 changes: 4 additions & 0 deletions docs/lnd/release-notes/release-notes-0.18.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ commitment when the channel was force closed.
* [Added](https://github.com/lightningnetwork/lnd/pull/8836) a new failure
reason `FailureReasonCanceled` to the list of payment failure reasons. It
indicates that a payment was manually cancelled by the user.

* [Update the version](https://github.com/lightningnetwork/lnd/pull/8974) of
[falafel](https://github.com/lightninglabs/falafel) used to generate JSON/wasm
stubs. This latest version of falafel also supports proto3 optional fields.

## Breaking Changes
## Performance Improvements
Expand Down

0 comments on commit 86ecb59

Please sign in to comment.