Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update LND to v0.15.2 (URGENT - hot fix) #1083

Merged
merged 5 commits into from
Oct 10, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 10 additions & 10 deletions guide/lightning/lightning-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ We'll download, verify and install LND.

```sh
$ cd /tmp
$ wget https://github.com/lightningnetwork/lnd/releases/download/v0.15.0-beta/lnd-linux-arm64-v0.15.0-beta.tar.gz
$ wget https://github.com/lightningnetwork/lnd/releases/download/v0.15.0-beta/manifest-v0.15.0-beta.txt
$ wget https://github.com/lightningnetwork/lnd/releases/download/v0.15.0-beta/manifest-roasbeef-v0.15.0-beta.sig
$ wget https://github.com/lightningnetwork/lnd/releases/download/v0.15.1-beta/lnd-linux-arm64-v0.15.1-beta.tar.gz
$ wget https://github.com/lightningnetwork/lnd/releases/download/v0.15.1-beta/manifest-v0.15.1-beta.txt
$ wget https://github.com/lightningnetwork/lnd/releases/download/v0.15.1-beta/manifest-roasbeef-v0.15.1-beta.sig
```

* Get the public key from the LND developer, [Olaoluwa Osuntokun](https://keybase.io/roasbeef){:target="_blank"}, who signed the manifest file; and add it to your GPG keyring
Expand All @@ -49,8 +49,8 @@ We'll download, verify and install LND.
* Verify the signature of the text file containing the checksums for the application

```sh
$ gpg --verify manifest-roasbeef-v0.15.0-beta.sig manifest-v0.15.0-beta.txt
> gpg: Signature made Fri Jun 24 00:50:22 2022 EEST
$ gpg --verify manifest-roasbeef-v0.15.1-beta.sig manifest-v0.15.1-beta.txt
> gpg: Signature made Tue Aug 30 22:21:09 2022 BST
> gpg: using RSA key 60A1FA7DA5BFF08BDCBBE7903BBD59E99B280306
> gpg: Good signature from "Olaoluwa Osuntokun <laolu32@gmail.com>" [unknown]
> gpg: WARNING: This key is not certified with a trusted signature!
Expand All @@ -62,17 +62,17 @@ We'll download, verify and install LND.
* Verify the signed checksum against the actual checksum of your download

```sh
$ sha256sum --check manifest-v0.15.0-beta.txt --ignore-missing
> lnd-linux-arm64-v0.15.0-beta.tar.gz: OK
$ sha256sum --check manifest-v0.15.1-beta.txt --ignore-missing
> lnd-linux-arm64-v0.15.1-beta.tar.gz: OK
```

* Install LND

```sh
$ tar -xzf lnd-linux-arm64-v0.15.0-beta.tar.gz
$ sudo install -m 0755 -o root -g root -t /usr/local/bin lnd-linux-arm64-v0.15.0-beta/*
$ tar -xzf lnd-linux-arm64-v0.15.1-beta.tar.gz
$ sudo install -m 0755 -o root -g root -t /usr/local/bin lnd-linux-arm64-v0.15.1-beta/*
$ lnd --version
> lnd version 0.15.0-beta commit=v0.15.0-beta
> lnd version 0.15.1-beta commit=v0.15.1-beta
```

### Data directory
Expand Down