Skip to content

Commit 5e064ba

Browse files
committed
wip: lnd_services: bump minimum required lnd version to v0.18.4-beta
1 parent 2af92f8 commit 5e064ba

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

lnd_services.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,11 @@ var (
4040
// tags can be adjusted accordingly. This default will be used as a fall
4141
// back version if none is specified in the configuration.
4242
minimalCompatibleVersion = &verrpc.Version{
43-
AppMajor: 0,
44-
AppMinor: 17,
45-
AppPatch: 4,
43+
AppMajor: 0,
44+
AppMinor: 18,
45+
// TODO(guggero): Bump this to 0.18.4 once that version was
46+
// tagged!
47+
AppPatch: 0,
4648
BuildTags: DefaultBuildTags,
4749
}
4850

0 commit comments

Comments
 (0)