Skip to content

Commit 93872e0

Browse files
committed
lnd_services: bump minimum compatible LND version to v0.19.0
While v0.18.5-beta likely still works, raising the minimum version reduces the need to handle deprecated fields, even if they're technically still supported.
1 parent 9d667a1 commit 93872e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lnd_services.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ var (
4141
// fallback version if none is specified in the configuration.
4242
minimalCompatibleVersion = &verrpc.Version{
4343
AppMajor: 0,
44-
AppMinor: 18,
45-
AppPatch: 5,
44+
AppMinor: 19,
45+
AppPatch: 0,
4646
BuildTags: DefaultBuildTags,
4747
}
4848

0 commit comments

Comments
 (0)