Compare commits

...

4 Commits

Author SHA1 Message Date
a6b59aaa3d Bumping LND to 0.17.4-beta 2024-02-07 14:34:05 -06:00
087ca40b8e Bumping LND to 0.17.4-beta-rc1 2024-02-07 14:34:04 -06:00
c26e06d509 Adding powershell version of lncli invoker 2024-02-07 14:34:04 -06:00
03730e9e4c 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
2024-02-07 14:34:04 -06:00
5 changed files with 10 additions and 6 deletions

@ -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"
@ -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"

@ -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"
@ -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"

@ -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

@ -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

@ -1,4 +1,4 @@
@using BTCPayServer.Abstractions.Models
@using BTCPayServer.Abstractions.Models
@model LndSeedBackupViewModel
@{
ViewData.SetActivePage(ServerNavPages.Services, "LND Seed Backup");
@ -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>