Skip to content

Commit

Permalink
Fix/reset txs (#114)
Browse files Browse the repository at this point in the history
* fix reset-txs.sh action

* update release notes and bump version
  • Loading branch information
Dominion5254 authored Nov 9, 2023
1 parent 6ec6243 commit b0b5361
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docker_entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 &
Expand Down
9 changes: 2 additions & 7 deletions manifest.yaml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion scripts/services/migrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -195,5 +195,5 @@ export const migration: T.ExpectedExports.migration = compat.migrations
},
},
},
"0.17.0.2",
"0.17.0.3",
);

0 comments on commit b0b5361

Please sign in to comment.