Skip to content

Commit db577b2

Browse files
committed
Merge branch 'v0.13.1-beta-5472' into 0-13-1-branch
2 parents 17b0461 + 2b49c4d commit db577b2

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

docs/release-notes/release-notes-0.13.1.md

+4
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ finding](https://github.com/lightningnetwork/lnd/pull/5332).
9898
server to fail due to newly added AMP
9999
logic](https://github.com/lightningnetwork/lnd/pull/5419).
100100

101+
The `ListLeases` call that was introduced in 0.13.0 also listed leases that were
102+
already expired. Only when `lnd` is restarted, these leases were cleaned up. We
103+
now [filter out](https://github.com/lightningnetwork/lnd/pull/5472) the expired
104+
leases.
101105

102106
# Contributors (Alphabetical Order)
103107

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/btcsuite/btcwallet/wallet/txrules v1.0.0
1515
github.com/btcsuite/btcwallet/wallet/txsizes v1.0.1-0.20210519225359-6ab9b615576f // indirect
1616
github.com/btcsuite/btcwallet/walletdb v1.3.5
17-
github.com/btcsuite/btcwallet/wtxmgr v1.3.0
17+
github.com/btcsuite/btcwallet/wtxmgr v1.3.1-0.20210706234807-aaf03fee735a
1818
github.com/davecgh/go-spew v1.1.1
1919
github.com/fsnotify/fsnotify v1.4.9 // indirect
2020
github.com/go-errors/errors v1.0.1

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ github.com/btcsuite/btcwallet/walletdb v1.3.5 h1:SoxUPLgJUkyO1XqON6X7x+rjHJoIpRQ
5555
github.com/btcsuite/btcwallet/walletdb v1.3.5/go.mod h1:oJDxAEUHVtnmIIBaa22wSBPTVcs6hUp5NKWmI8xDwwU=
5656
github.com/btcsuite/btcwallet/wtxmgr v1.3.0 h1:lrZaZXGJjDedYTV7s5UgU9xBe8+N+cIDW7BYwI/B8Fs=
5757
github.com/btcsuite/btcwallet/wtxmgr v1.3.0/go.mod h1:awQsh1n/0ZrEQ+JZgWvHeo153ubzEisf/FyNtwI0dDk=
58+
github.com/btcsuite/btcwallet/wtxmgr v1.3.1-0.20210706234807-aaf03fee735a h1:25oMK8eFUTVMyKGHc2xX7pNkU4u208Dpf6IPVh5E+cA=
59+
github.com/btcsuite/btcwallet/wtxmgr v1.3.1-0.20210706234807-aaf03fee735a/go.mod h1:UM38ixX8VwJ9qey4umf//0H3ndn5kSImFZ46V54Nd5Q=
5860
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd h1:R/opQEbFEy9JGkIguV40SvRY1uliPX8ifOvi6ICsFCw=
5961
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd/go.mod h1:HHNXQzUsZCxOoE+CPiyCTO6x34Zs86zZUiwtpXoGdtg=
6062
github.com/btcsuite/golangcrypto v0.0.0-20150304025918-53f62d9b43e8/go.mod h1:tYvUd8KLhm/oXvUeSEs2VlLghFjQt9+ZaF9ghH0JNjc=

0 commit comments

Comments
 (0)