mirror of
https://github.com/Retropex/umbrel-apps.git
synced 2025-05-12 11:20:43 +02:00
Update Core Lightning to v24.11.1-grpc (allow gRPC connection)
Co-authored-by: nmfretz <nmfretz@gmail.com>
This commit is contained in:
parent
1e25fb4283
commit
bfc6bba992
@ -61,6 +61,7 @@ services:
|
||||
- ${APP_CORE_LIGHTNING_DAEMON_PORT}:9735
|
||||
- ${APP_CORE_LIGHTNING_WEBSOCKET_PORT}:${APP_CORE_LIGHTNING_WEBSOCKET_PORT}
|
||||
- ${CORE_LIGHTNING_REST_PORT}:${CORE_LIGHTNING_REST_PORT}
|
||||
- ${APP_CORE_LIGHTNING_DAEMON_GRPC_PORT}:${APP_CORE_LIGHTNING_DAEMON_GRPC_PORT}
|
||||
command:
|
||||
- --bitcoin-rpcconnect=${APP_BITCOIN_NODE_IP}
|
||||
- --bitcoin-rpcuser=${APP_BITCOIN_RPC_USER}
|
||||
@ -75,6 +76,7 @@ services:
|
||||
- --network=${APP_CORE_LIGHTNING_BITCOIN_NETWORK}
|
||||
- --database-upgrade=true
|
||||
- --experimental-offers
|
||||
- --grpc-host=${APP_CORE_LIGHTNING_DAEMON_IP}
|
||||
- --grpc-port=${APP_CORE_LIGHTNING_DAEMON_GRPC_PORT}
|
||||
- --clnrest-host=${APP_CORE_LIGHTNING_DAEMON_IP}
|
||||
- --clnrest-port=${CORE_LIGHTNING_REST_PORT}
|
||||
|
@ -4,7 +4,7 @@ export APP_CORE_LIGHTNING_REST_IP="10.21.21.95"
|
||||
export APP_CORE_LIGHTNING_REST_PORT="2104"
|
||||
export APP_CORE_LIGHTNING_DAEMON_IP="10.21.21.96"
|
||||
export APP_CORE_LIGHTNING_DAEMON_PORT="9736"
|
||||
export APP_CORE_LIGHTNING_DAEMON_GRPC_PORT="2105"
|
||||
export APP_CORE_LIGHTNING_DAEMON_GRPC_PORT="2110"
|
||||
export APP_CORE_LIGHTNING_WEBSOCKET_PORT="2106"
|
||||
export APP_CORE_LIGHTNING_DATA_DIR="${EXPORTS_APP_DIR}/data/lightningd"
|
||||
export CORE_LIGHTNING_REST_PORT="2107"
|
||||
|
@ -2,7 +2,7 @@ manifestVersion: 1.1
|
||||
id: core-lightning
|
||||
category: bitcoin
|
||||
name: Core Lightning
|
||||
version: "24.11.1"
|
||||
version: "24.11.1-grpc"
|
||||
tagline: Run your personal Core Lightning node
|
||||
description: >-
|
||||
Get started with the Lightning network today with Core Lightning - a
|
||||
@ -32,33 +32,8 @@ defaultPassword: ""
|
||||
submitter: Blockstream
|
||||
submission: https://github.com/getumbrel/umbrel-apps/pull/475
|
||||
releaseNotes: >-
|
||||
This updates cln-application to v0.0.6, and lightningd to v24.11.1.
|
||||
|
||||
cln-application v0.0.6:
|
||||
|
||||
- Bug fix: Change uppercase invoices and offers to lowercase.
|
||||
|
||||
- Enhancement: Create and Display Invoice Rune on Connect Wallet.
|
||||
|
||||
- Deprecation: Resolve commando-rune deprecation and use createrune instead.
|
||||
|
||||
lightningd v24.11.1:
|
||||
|
||||
- `xpay` is a new, experimental plugin for payments. It's rewritten from the ground up, on top of another plugin called askrene, which provides advanced routing advice for payments. The two play together: xpay tells askrene about the results of payment attempts, so it learns over time. The hard work was done by @Lagrang3 who wrote and refined the minimum-cost-flow solver which is the heart of askrene.
|
||||
|
||||
- Paying and receiving offers (bolt12 send and receive) are enabled by default! This reflects it finally being included in the BOLT specs in September, to applause from all the different Lightning implementers.
|
||||
|
||||
- `listpays` now takes start and limit parameters to speed it up if you only want recent payments.
|
||||
|
||||
- CLN is smarter about remembering where the node successfully connected out to a peer, and will always try that again.
|
||||
|
||||
- The autoclean plugin would make nodes freeze for 30 seconds at a time when had a lot of work to do: it is now kinder and gentler.
|
||||
|
||||
- Faster gossip which is helpful for everyone stay up-to-date with what is happening in the network.
|
||||
|
||||
- Connectd will connect faster on startup, maintaining up to 10 outgoing connection attempts in parallel.
|
||||
|
||||
- Some nasty bugs fixed, including one where extended downtime could mean we might never fully resolve unilateral closes (just missing returning the funds to our wallet).
|
||||
This update makes the gRPC interface in Core Lightning accessible for companion apps you install.
|
||||
|
||||
|
||||
Full lightningd release notes are available at https://github.com/ElementsProject/lightning/releases
|
||||
For example, as a result of this change, the newest Ride The Lightning release integrates Boltz as a service, allowing you to seamlessly swap
|
||||
in and out of the Lightning Network.
|
||||
|
Loading…
Reference in New Issue
Block a user