Skip to content

Commit

Permalink
Bumping LND to 0.17.4-beta (#5739)
Browse files Browse the repository at this point in the history
* Clarifying that only onchain funds will be restored to the wallet

Off chain recovery would need to be done with channel.backup file which is not part of this process

* Adding powershell version of lncli invoker

* Bumping LND to 0.17.4-beta-rc1

* Bumping LND to 0.17.4-beta
  • Loading branch information
rockstardev committed Feb 16, 2024
1 parent c57e1cc commit b592ee2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions BTCPayServer.Tests/docker-compose.altcoins.yml
Expand Up @@ -224,7 +224,7 @@ services:
- "5432"

merchant_lnd:
image: btcpayserver/lnd:v0.17.3-beta
image: btcpayserver/lnd:v0.17.4-beta
restart: unless-stopped
environment:
LND_CHAIN: "btc"
Expand Down Expand Up @@ -259,7 +259,7 @@ services:
- bitcoind

customer_lnd:
image: btcpayserver/lnd:v0.17.3-beta
image: btcpayserver/lnd:v0.17.4-beta
restart: unless-stopped
environment:
LND_CHAIN: "btc"
Expand Down
4 changes: 2 additions & 2 deletions BTCPayServer.Tests/docker-compose.yml
Expand Up @@ -211,7 +211,7 @@ services:
- "5432"

merchant_lnd:
image: btcpayserver/lnd:v0.17.3-beta
image: btcpayserver/lnd:v0.17.4-beta
restart: unless-stopped
environment:
LND_CHAIN: "btc"
Expand Down Expand Up @@ -248,7 +248,7 @@ services:
- bitcoind

customer_lnd:
image: btcpayserver/lnd:v0.17.3-beta
image: btcpayserver/lnd:v0.17.4-beta
restart: unless-stopped
environment:
LND_CHAIN: "btc"
Expand Down
2 changes: 2 additions & 0 deletions BTCPayServer.Tests/docker-customer-lncli.ps1
@@ -0,0 +1,2 @@
$container_id="$(docker ps -q --filter label=com.docker.compose.project=btcpayservertests --filter label=com.docker.compose.service=customer_lnd)"
docker exec -ti $container_id lncli --no-macaroons --rpcserver localhost:10008 $args
2 changes: 2 additions & 0 deletions BTCPayServer.Tests/docker-merchant-lncli.ps1
@@ -0,0 +1,2 @@
$container_id="$(docker ps -q --filter label=com.docker.compose.project=btcpayservertests --filter label=com.docker.compose.service=merchant_lnd)"
docker exec -ti $container_id lncli --no-macaroons --rpcserver localhost:10008 $args
4 changes: 2 additions & 2 deletions BTCPayServer/Views/UIServer/LndSeedBackup.cshtml
@@ -1,4 +1,4 @@
@using BTCPayServer.Abstractions.Models
@using BTCPayServer.Abstractions.Models
@model LndSeedBackupViewModel
@{
ViewData.SetActivePage(ServerNavPages.Services, "LND Seed Backup");
Expand All @@ -11,7 +11,7 @@
<div class="row">
<div class="col-lg-8">
<div class="form-group">
<p>The LND seed backup is useful to recover funds of your LND wallet in case of a corruption of your server.</p>
<p>The LND seed backup is useful to recover on-chain funds of your LND wallet in case of a corruption of your server.</p>
<p>The recovering process is documented by LND on <a href="https://github.com/lightningnetwork/lnd/blob/master/docs/recovery.md" rel="noreferrer noopener">this page</a>.</p>
</div>
<button class="btn btn-primary @(Model.Removed ? "collapse" : "")" id="details" type="button">See confidential seed information</button>
Expand Down

0 comments on commit b592ee2

Please sign in to comment.