Skip to content

Commit 96fe51e

Browse files
authored
Merge pull request #7098 from lightningnetwork/btcd-bump-23-3
mod+build: bump btcd version to v0.23.3 and bump lnd version to v0.15.4-beta
2 parents b4e7131 + c8a3fbe commit 96fe51e

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

build/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const (
4444
AppMinor uint = 15
4545

4646
// AppPatch defines the application patch for this binary.
47-
AppPatch uint = 3
47+
AppPatch uint = 4
4848

4949
// AppPreRelease MUST only contain characters from semanticAlphabet
5050
// per the semantic versioning spec.
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Release Notes
2+
3+
## Bug Fixes
4+
5+
* [A wire parsing bug has been fixed that would cause lnd to be unable _decode_
6+
certain large transactions](https://github.com/lightningnetwork/lnd/pull/7098).
7+
8+
# Contributors (Alphabetical Order)
9+
10+
* Oliver Gugger

funding/manager.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3194,7 +3194,7 @@ func (f *Manager) annAfterSixConfs(completeChan *channeldb.OpenChannel,
31943194
// a zero-conf channel. This will wait for the real confirmation, add the
31953195
// confirmed SCID to the router graph, and then announce after six confs.
31963196
func (f *Manager) waitForZeroConfChannel(c *channeldb.OpenChannel,
3197-
pendingID [32]byte) error {
3197+
_ [32]byte) error {
31983198

31993199
// First we'll check whether the channel is confirmed on-chain. If it
32003200
// is already confirmed, the chainntnfs subsystem will return with the

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/lightningnetwork/lnd
33
require (
44
github.com/NebulousLabs/go-upnp v0.0.0-20180202185039-29b680b06c82
55
github.com/Yawning/aez v0.0.0-20211027044916-e49e68abd344
6-
github.com/btcsuite/btcd v0.23.2
6+
github.com/btcsuite/btcd v0.23.3
77
github.com/btcsuite/btcd/btcec/v2 v2.2.1
88
github.com/btcsuite/btcd/btcutil v1.1.2
99
github.com/btcsuite/btcd/btcutil/psbt v1.1.5

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ github.com/btcsuite/btcd v0.22.0-beta.0.20220207191057-4dc4ff7963b4/go.mod h1:7a
7777
github.com/btcsuite/btcd v0.22.0-beta.0.20220316175102-8d5c75c28923/go.mod h1:taIcYprAW2g6Z9S0gGUxyR+zDwimyDMK5ePOX+iJ2ds=
7878
github.com/btcsuite/btcd v0.23.0/go.mod h1:0QJIIN1wwIXF/3G/m87gIwGniDMDQqjVn4SZgnFpsYY=
7979
github.com/btcsuite/btcd v0.23.1/go.mod h1:0QJIIN1wwIXF/3G/m87gIwGniDMDQqjVn4SZgnFpsYY=
80-
github.com/btcsuite/btcd v0.23.2 h1:/YOgUp25sdCnP5ho6Hl3s0E438zlX+Kak7E6TgBgoT0=
81-
github.com/btcsuite/btcd v0.23.2/go.mod h1:0QJIIN1wwIXF/3G/m87gIwGniDMDQqjVn4SZgnFpsYY=
80+
github.com/btcsuite/btcd v0.23.3 h1:4KH/JKy9WiCd+iUS9Mu0Zp7Dnj17TGdKrg9xc/FGj24=
81+
github.com/btcsuite/btcd v0.23.3/go.mod h1:0QJIIN1wwIXF/3G/m87gIwGniDMDQqjVn4SZgnFpsYY=
8282
github.com/btcsuite/btcd/btcec/v2 v2.1.0/go.mod h1:2VzYrv4Gm4apmbVVsSq5bqf1Ec8v56E48Vt0Y/umPgA=
8383
github.com/btcsuite/btcd/btcec/v2 v2.1.1/go.mod h1:ctjw4H1kknNJmRN4iP1R7bTQ+v3GJkZBd6mui8ZsAZE=
8484
github.com/btcsuite/btcd/btcec/v2 v2.1.3/go.mod h1:ctjw4H1kknNJmRN4iP1R7bTQ+v3GJkZBd6mui8ZsAZE=

0 commit comments

Comments
 (0)