Skip to content

Commit

Permalink
missing flags and systemd renaming, documentation polish
Browse files Browse the repository at this point in the history
  • Loading branch information
aljazceru committed Aug 29, 2023
1 parent bfba14b commit 2ef5bac
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy/lspd-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ make
make install
cat <<EOL | sudo tee /etc/systemd/system/lightningd.service
[Unit]
Description=Lightning Network Daemon (lightningd)
Description=Lightning Network Provider Daemon (lightningd)
Wants=network-online.target
After=network.target
[Service]
Expand Down
1 change: 1 addition & 0 deletions docs/CLN.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ In order to run lspd on top of CLN, you need to run the lspd process and run cln
- `--plugin=/path/to/lspd_plugin`: to use lspd as plugin
- `--max-concurrent-htlcs=30`: In order to use zero reserve channels on the client side, (local max_accepted_htlcs + remote max_accepted_htlcs + 2) * dust limit must be lower than the channel capacity. Reduce max-concurrent-htlcs or increase channel capacity accordingly.
- `--dev-allowdustreserve=true`: In order to allow zero reserve on the client side (requires developer mode turned on)
- `--allow-deprecated-apis=true`: lspd currently uses a deprecated api, so needs this flag set.
- `--lsp-listen=127.0.0.1:<port>`: Set on which port the lspd_plugin will listen for lspd communication, must be the same port that is used in pluginAddress parameter in NODES env variable.
1. Run lspd

Expand Down
1 change: 0 additions & 1 deletion docs/LND.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Needs to be build from source:
git clone https://github.com/breez/lspd
cd lspd
go build . # compile lspd
go build -o lspd_plugin # compile lspd cln plugin
```
### Postgresql
Lspd supports postgresql backend. Create new database and user for lspd:
Expand Down

0 comments on commit 2ef5bac

Please sign in to comment.