From 83f1a052d910caee0be8143758a9d819745b8888 Mon Sep 17 00:00:00 2001 From: Joost Jager Date: Mon, 15 Jun 2020 11:51:18 +0200 Subject: [PATCH 1/2] readme: update compatibility table --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index eaba981..75941a8 100644 --- a/README.md +++ b/README.md @@ -67,10 +67,11 @@ recommended to always keep both `lnd` and `loop` updated to the most recent released version. If you need to run an older version of `lnd`, please consult the following table for supported versions. -Loop Version | Compatible LND Version(s) -------------------|------------------ -`>= v0.6.0-beta` | `v0.10.x-beta` -`<= 0.5.1-beta` | `v0.7.1-beta` - `v0.10.x-beta` +Loop Version | Compatible LND Version(s) +------------------------------|------------------ +`>= v0.6.3-beta` | >= `v0.10.1-beta` +`v0.6.0-beta` - `v0.6.2-beta` | >= `v0.10.0-beta` +`<= 0.5.1-beta` | >= `v0.7.1-beta` If you are building from source make sure you are using the latest tagged version of lnd. You can get this by git cloning the repository and checking out From e10cd7ca3a8f8fb35ecedc78565863ab34adb124 Mon Sep 17 00:00:00 2001 From: Joost Jager Date: Mon, 15 Jun 2020 11:57:05 +0200 Subject: [PATCH 2/2] lndclient: log version of connected lnd instance --- lndclient/lnd_services.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lndclient/lnd_services.go b/lndclient/lnd_services.go index 3089255..ac8aec0 100644 --- a/lndclient/lnd_services.go +++ b/lndclient/lnd_services.go @@ -340,6 +340,8 @@ func checkVersionCompatibility(client VersionerClient, return nil, fmt.Errorf("GetVersion error: %v", err) } + log.Infof("lnd version: %v", VersionString(version)) + // Now check the version and make sure all required build tags are set. err = assertVersionCompatible(version, expected) if err != nil {