From 5e064ba1cc8b26c58fc1d6e82b3674faed395702 Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Wed, 18 Sep 2024 15:28:44 +0200 Subject: [PATCH] wip: lnd_services: bump minimum required lnd version to v0.18.4-beta --- lnd_services.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lnd_services.go b/lnd_services.go index 7b51e01..1b1e054 100644 --- a/lnd_services.go +++ b/lnd_services.go @@ -40,9 +40,11 @@ var ( // tags can be adjusted accordingly. This default will be used as a fall // back version if none is specified in the configuration. minimalCompatibleVersion = &verrpc.Version{ - AppMajor: 0, - AppMinor: 17, - AppPatch: 4, + AppMajor: 0, + AppMinor: 18, + // TODO(guggero): Bump this to 0.18.4 once that version was + // tagged! + AppPatch: 0, BuildTags: DefaultBuildTags, }