diff --git a/docker_entrypoint.sh b/docker_entrypoint.sh index 254933b..21ed7af 100755 --- a/docker_entrypoint.sh +++ b/docker_entrypoint.sh @@ -38,8 +38,8 @@ sed -i 's/\(BEGIN\|END\) PRIVATE KEY/\1 EC PRIVATE KEY/g' /root/.lnd/tls.key configurator configurator_child=$! -if test -f /root/.lnd/requires.reset-txs; then - rm /root/.lnd/requires.reset-txs & +if [ -e /root/.lnd/requires.reset_txs ]; then + rm /root/.lnd/requires.reset_txs lnd --reset-wallet-transactions & else lnd & diff --git a/manifest.yaml b/manifest.yaml index 51f4703..9dd14aa 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,13 +1,8 @@ id: lnd title: LND -version: 0.17.0.2 +version: 0.17.0.3 release-notes: |- - * Update upstream to v0.17.0 including experimental Taproot Channels! - [Release Notes](https://github.com/lightningnetwork/lnd/releases/tag/v0.17.0-beta) - * Prevent migration actions if there is an existing LND wallet - * Update README build instructions - * Minor bugfixes and refactoring - * Update Properties to display Watchtower Server URL (if enabled) and remove duplicated information - * Fix Watchtower Server bug + * Fix reset-txs action license: mit wrapper-repo: "https://github.com/Start9Labs/lnd-wrapper" upstream-repo: "https://github.com/lightningnetwork/lnd" diff --git a/scripts/services/migrations.ts b/scripts/services/migrations.ts index 8f00703..8878335 100644 --- a/scripts/services/migrations.ts +++ b/scripts/services/migrations.ts @@ -195,5 +195,5 @@ export const migration: T.ExpectedExports.migration = compat.migrations }, }, }, - "0.17.0.2", + "0.17.0.3", );