Skip to content

Commit

Permalink
[Bonus] CLN: update to 0.11.2 / poetry install commands (raspibolt#1056)
Browse files Browse the repository at this point in the history
* update to cln 0.11.2

* update poetry install commands

* rm "sudo make install" bc user has no sudo rights
  • Loading branch information
blckbx authored Aug 29, 2022
1 parent 50080d5 commit 1d15672
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions guide/bonus/lightning/cln.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@ We will download, verify, install and configure CLN on your RaspiBolt setup. Thi
$ git clone https://github.com/ElementsProject/lightning.git
$ cd lightning
$ git fetch --all --tags
$ git reset --hard v0.11.1
$ git reset --hard v0.11.2
```

* Don't trust, verify! Check who released the current version and get their signing keys and verify checksums. Verification step should output `Good Signature`.

```sh
$ wget -O "pgp_keys.asc" https://raw.githubusercontent.com/ElementsProject/lightning/master/contrib/keys/rustyrussell.txt
$ gpg --import ./pgp_keys.asc
$ git verify-tag v0.11.1
$ git verify-tag v0.11.2
```

* Download user specific python packages and set path for `poetry`.
Expand All @@ -131,7 +131,7 @@ We will download, verify, install and configure CLN on your RaspiBolt setup. Thi
```sh
$ poetry install
$ ./configure --enable-experimental-features
$ make
$ poetry run make
```

## Configuration
Expand Down

0 comments on commit 1d15672

Please sign in to comment.