Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/contribute-to-core-lightning/docker-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ docker run -it --rm --platform=linux/amd64 --network=host -v '/root/.lightning:/

2. Start your `bitcoind` node on the local machine.

3. Start `vlsd` locally with your prefered configuration. For example:
3. Start `vlsd` locally with your preferred configuration. For example:

```shell
export LIGHTNING_VLS_DIR=/root/.lightning
Expand Down
4 changes: 2 additions & 2 deletions doc/getting-started/getting-started/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ Note that for simple setups, the implicit _autolisten_ option does the right thi

Core Lightning also support IPv4/6 address discovery behind NAT routers. If your node detects an new public address, it will update its announcement. For this to work you need to forward the default TCP port 9735 to your node. IP discovery is only active if no other addresses are announced.

You can instead use _addr_ to override this (eg. to change the port), or precisely control where to bind and what to announce with the _bind-addr_ and _announce-addr_ options. These will **disable** the _autolisten_ logic, so you must specifiy exactly what you want!
You can instead use _addr_ to override this (eg. to change the port), or precisely control where to bind and what to announce with the _bind-addr_ and _announce-addr_ options. These will **disable** the _autolisten_ logic, so you must specify exactly what you want!

- **addr**=_\[IPADDRESS[:PORT]]|autotor:TORIPADDRESS[:SERVICEPORT][/torport=TORPORT]|statictor:TORIPADDRESS[:SERVICEPORT]\[/torport=TORPORT]\[/torblob=[blob]]|DNS[:PORT]_

Expand Down Expand Up @@ -473,7 +473,7 @@ plugins along with any immediate subdirectories). You can specify additional pat

- **clear-plugins**

This option clears all _plugin_, _important-plugin_, and _plugin-dir_ options preceeding it, including the default built-in plugin directory. You can still add _plugin-dir_, _plugin_, and _important-plugin_ options following this and they will have the normal effect.
This option clears all _plugin_, _important-plugin_, and _plugin-dir_ options preceding it, including the default built-in plugin directory. You can still add _plugin-dir_, _plugin_, and _important-plugin_ options following this and they will have the normal effect.

- **disable-plugin**=_PLUGIN_

Expand Down
2 changes: 1 addition & 1 deletion doc/getting-started/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ uv sync --all-extras --all-groups --frozen
./configure
```

If you see `/usr/local` in the log, an Intel compatability dependency has been picked up. The simplest solution is to remove brew entirely, reinstall it, and start these instructions over.
If you see `/usr/local` in the log, an Intel compatibility dependency has been picked up. The simplest solution is to remove brew entirely, reinstall it, and start these instructions over.
```shell
uv run gmake
```
Expand Down
2 changes: 1 addition & 1 deletion doc/node-operators-guide/plugins.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ reckless install plugin_name
reckless will exit early in the event that:

- the plugin is not found in any available source repositories
- dependencies are not sucessfully installed
- dependencies are not successfully installed
- the plugin fails to execute

Reckless-installed plugins reside in the 'reckless' subdirectory of the user's `.lightning` folder. By default, plugins are activated on the `bitcoin` network (and use lightningd's bitcoin network config), but regtest may also be used.
Expand Down