mirror of
https://github.com/lightninglabs/pool.git
synced 2026-08-13 12:33:04 +02:00
server+README: bump minimum required lnd version to v0.15.4-beta
Since any version prior to v0.15.4-beta will not sync to the mainnet chain, we can safely bump the minimum required version to that since no older version will be running (properly) anywhere.
This commit is contained in:
parent
30c7ef6531
commit
a5539ee08a
2 changed files with 4 additions and 4 deletions
|
|
@ -47,7 +47,7 @@ Download the latest binaries from the
|
||||||
## LND
|
## LND
|
||||||
|
|
||||||
Note that Pool requires `lnd` to be built with **all of its subservers** and
|
Note that Pool requires `lnd` to be built with **all of its subservers** and
|
||||||
requires running at least `v0.14.3`. Download the latest [official release
|
requires running at least `v0.15.4`. Download the latest [official release
|
||||||
binary](https://github.com/lightningnetwork/lnd/releases/latest) or build `lnd`
|
binary](https://github.com/lightningnetwork/lnd/releases/latest) or build `lnd`
|
||||||
from source by following the [installation
|
from source by following the [installation
|
||||||
instructions](https://github.com/lightningnetwork/lnd/blob/master/docs/INSTALL.md).
|
instructions](https://github.com/lightningnetwork/lnd/blob/master/docs/INSTALL.md).
|
||||||
|
|
@ -81,7 +81,7 @@ to help in any way we can. In the meantime please see our
|
||||||
[FAQs](https://pool.lightning.engineering/faq).
|
[FAQs](https://pool.lightning.engineering/faq).
|
||||||
|
|
||||||
## Build from source
|
## Build from source
|
||||||
If you’d prefer to compile from source code, you’ll need at least `go 1.17` and
|
If you’d prefer to compile from source code, you’ll need at least `go 1.18` and
|
||||||
`make`.
|
`make`.
|
||||||
|
|
||||||
Run the following commands to download the code, compile and install Pool:
|
Run the following commands to download the code, compile and install Pool:
|
||||||
|
|
@ -95,5 +95,5 @@ $ make install
|
||||||
This will install the binaries into your `$GOPATH/bin` directory.
|
This will install the binaries into your `$GOPATH/bin` directory.
|
||||||
|
|
||||||
## Compatibility
|
## Compatibility
|
||||||
Lightning Pool requires `lnd` version `0.14.3-beta` or higher (`v0.15.0-beta` or
|
Lightning Pool requires `lnd` version `0.15.4-beta` or higher (`v0.16.0-beta` or
|
||||||
later is recommended).
|
later is recommended).
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ var (
|
||||||
minimalCompatibleVersion = &verrpc.Version{
|
minimalCompatibleVersion = &verrpc.Version{
|
||||||
AppMajor: 0,
|
AppMajor: 0,
|
||||||
AppMinor: 15,
|
AppMinor: 15,
|
||||||
AppPatch: 1,
|
AppPatch: 4,
|
||||||
|
|
||||||
// We don't actually require the invoicesrpc calls. But if we
|
// We don't actually require the invoicesrpc calls. But if we
|
||||||
// try to use lndclient on an lnd that doesn't have it enabled,
|
// try to use lndclient on an lnd that doesn't have it enabled,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue