change --enable-developer to --enable-debugbuild

This commit is contained in:
Roei Erez
2023-12-06 11:22:15 +02:00
parent 1e1e7362a6
commit b4d60ae3ee
2 changed files with 2 additions and 2 deletions

View File

@@ -104,7 +104,7 @@ runs:
if: steps.cache-core-lightning.outputs.cache-hit != 'true' if: steps.cache-core-lightning.outputs.cache-hit != 'true'
run: | run: |
cd lightning_git cd lightning_git
./configure --enable-developer --enable-rust ./configure --enable-debugbuild --enable-rust
poetry install poetry install
poetry run make -j `nproc` poetry run make -j `nproc`
shell: bash shell: bash

View File

@@ -58,7 +58,7 @@ NODES='[ { "name": "${LSPName}", "nodePubkey": "$PUBKEY", "lspdPrivateKey": "$LS
``` ```
### Running lspd on CLN ### Running lspd on CLN
In order to run lspd on top of CLN, you need to run the lspd process and run cln with the provided cln plugin. You also need lightningd compiled with developer mode on (`./configure --enable-developer`) In order to run lspd on top of CLN, you need to run the lspd process and run cln with the provided cln plugin. You also need lightningd compiled with developer mode on (`./configure --enable-debugbuild`)
1. Run cln with the following options set: 1. Run cln with the following options set:
- `--plugin=/path/to/lspd_plugin`: to use lspd as plugin - `--plugin=/path/to/lspd_plugin`: to use lspd as plugin