Skip to content

Commit ac30126

Browse files
committed
lnd_services: bump minimum required lnd version to v0.18.4-beta
With the latest lnd master versioned as v0.18.99-beta, we can now require this commit of lndclient to require a minimum version of v0.18.4-beta (which will ship all the RPC changes in this PR).
1 parent f3abe61 commit ac30126

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lnd_services.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ var (
3737
// required in lnd to get all functionality implemented in lndclient.
3838
// Users can provide their own, specific version if needed. If only a
3939
// subset of the lndclient functionality is needed, the required build
40-
// tags can be adjusted accordingly. This default will be used as a fall
41-
// back version if none is specified in the configuration.
40+
// tags can be adjusted accordingly. This default will be used as a
41+
// fallback version if none is specified in the configuration.
4242
minimalCompatibleVersion = &verrpc.Version{
4343
AppMajor: 0,
44-
AppMinor: 17,
44+
AppMinor: 18,
4545
AppPatch: 4,
4646
BuildTags: DefaultBuildTags,
4747
}

0 commit comments

Comments
 (0)