multi: update neutrino dep to include chainimport and header state fix
What changed, and why it matters
This commit simply updates a software library dependency (neutrino) used by the Lightning Network Daemon (LND). The new version is said to add a faster way to import blockchain headers and fix a bug that could stop peer-to-peer header syncing after an import. The actual code change shown is only a version bump in dependency files plus a tiny whitespace cleanup in a linter config. There is no direct evidence in the commit of a security vulnerability or attack.
Treat as a routine dependency maintenance update. Review the neutrino v0.17.1 release notes for any security advisories, but no immediate security action is warranted based solely on this commit.
Security signals we found
Dependency update to a newer tagged release of neutrino
Commit message references a 'ResetHeaderState fix' for P2P sync continuation after chain import
No direct code-level security fix is visible in the supplied diff
Evidence from the diff
The diff updates github.com/lightninglabs/neutrino from a pre-release pseudo-version (v0.16.3-0.20260508212153-0f87fa7c4b36) to v0.17.1 in go.mod/go.sum. The commit message says the new version includes the chainimport package for fast initial header sync and a ResetHeaderState fix that allows P2P sync to continue after import. No LND source code call sites are changed in this diff, and the .golangci.yml change is a trailing-whitespace fix. No security relevance, CVE, or researcher attribution is stated.
Changed components
github.com/lightninglabs/neutrino dependencyLND neutrino-backed light-client header sync pathInspect captured patch +4 / −4
diff --git a/.golangci.yml b/.golangci.yml
index 596f970..22a7c38 100644
--- a/.golangci.yml
+++ b/.golangci.yml
@@ -160,7 +160,7 @@ linters:
- github.com/gogo/protobuf
- google.golang.org/protobuf
- github.com/lightningnetwork/lnd/sqldb
- - github.com/lightningnetwork/lightning-onion
+ - github.com/lightningnetwork/lightning-onion
replace-local: true
gosec:
diff --git a/go.mod b/go.mod
index af03897..4ce18fb 100644
--- a/go.mod
+++ b/go.mod
@@ -30,7 +30,7 @@ require (
github.com/jessevdk/go-flags v1.6.1
github.com/jrick/logrotate v1.1.2
github.com/kkdai/bstream v1.0.0
- github.com/lightninglabs/neutrino v0.16.3-0.20260508212153-0f87fa7c4b36
+ github.com/lightninglabs/neutrino v0.17.1
github.com/lightninglabs/neutrino/cache v1.1.3
github.com/lightningnetwork/lightning-onion v1.3.0
github.com/lightningnetwork/lnd/actor v0.0.6
diff --git a/go.sum b/go.sum
index 065b5a1..d905a5d 100644
--- a/go.sum
+++ b/go.sum
@@ -303,8 +303,8 @@ github.com/lib/pq v1.10.9 h1:YXG7RB+JIjhP29X+OtkiDnYaXQwpS4JEWq7dtCCRUEw=
github.com/lib/pq v1.10.9/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf h1:HZKvJUHlcXI/f/O0Avg7t8sqkPo78HFzjmeYFl6DPnc=
github.com/lightninglabs/gozmq v0.0.0-20191113021534-d20a764486bf/go.mod h1:vxmQPeIQxPf6Jf9rM8R+B4rKBqLA2AjttNxkFBL2Plk=
-github.com/lightninglabs/neutrino v0.16.3-0.20260508212153-0f87fa7c4b36 h1:d6FuJQ6YjWqBdMJ3fmk9BgjyMFyRKecKxoGq//PHdh0=
-github.com/lightninglabs/neutrino v0.16.3-0.20260508212153-0f87fa7c4b36/go.mod h1:fNjnbuSPw4lRsVAzvjC1JG7IE7rqae/mbek2tNkN/Dw=
+github.com/lightninglabs/neutrino v0.17.1 h1:lNhgq7ix/N81R6oATroP/kHMzH1qzVVF2dEGcTlN2t4=
+github.com/lightninglabs/neutrino v0.17.1/go.mod h1:tcwCgRTGWcaua0L/xzdwllW8eslHDbux4XkiYsivvHE=
github.com/lightninglabs/neutrino/cache v1.1.3 h1:rgnabC41W+XaPuBTQrdeFjFCCAVKh1yctAgmb3Se9zA=
github.com/lightninglabs/neutrino/cache v1.1.3/go.mod h1:qxkJb+pUxR5p84jl5uIGFCR4dGdFkhNUwMSxw3EUWls=
github.com/lightninglabs/protobuf-go-hex-display v1.33.0-hex-display h1:Y2WiPkBS/00EiEg0qp0FhehxnQfk3vv8U6Xt3nN+rTY=
Why this scored 12/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.