Skip to content

Commit

Permalink
Merge pull request #221 from BoltzExchange/lnd-011
Browse files Browse the repository at this point in the history
Update to LND v0.11.1
  • Loading branch information
michael1011 authored Oct 10, 2020
2 parents 0d6ca2d + fdd36a1 commit 7d5e9bd
Show file tree
Hide file tree
Showing 6 changed files with 534 additions and 630 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [2.4.2-beta](https://github.com/BoltzExchange/boltz-backend/compare/v2.4.1...v2.4.2-beta) (2020-10-09)


### Bug Fixes

* update to LND v0.11.1 ([acff8e7](https://github.com/BoltzExchange/boltz-backend/commit/acff8e73a7b7ced7aec89c5148565fd0c53be46b))



## [2.4.1-beta](https://github.com/BoltzExchange/boltz-backend/compare/v2.4.0...v2.4.1-beta) (2020-09-22)


Expand Down
8 changes: 4 additions & 4 deletions docker/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ class Image:
value="5.1.29"
)

BITCOIN_VERSION = "0.20.0"
BITCOIN_VERSION = "0.20.1"
LITECOIN_VERSION = "0.18.1"
DOGECOIN_VERSION = "1.14.2"
ZCASH_VERSION = "3.0.0"

LND_VERSION = "0.10.3-beta"
LND_VERSION = "0.11.1-beta"

IMAGES: Dict[str, Image] = {
"berkeley-db": Image(
Expand Down Expand Up @@ -85,12 +85,12 @@ class Image:
UBUNTU_VERSION,
BuildArgument(
name="GOLANG_VERSION",
value="1.14.4-buster"
value="1.15.2-buster"
)
]
),
"regtest": Image(
tags=["1.5.2"],
tags=["1.5.4"],
arguments=[
UBUNTU_VERSION,
BuildArgument(
Expand Down
4 changes: 2 additions & 2 deletions lib/VersionCheck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ class VersionCheck {
};

private static lndVersionLimits = {
minimal: '0.10.1',
maximal: '0.10.4',
minimal: '0.11.0',
maximal: '0.11.1',
};

public static checkChainClientVersion = (symbol: string, version: number): void => {
Expand Down
Loading

0 comments on commit 7d5e9bd

Please sign in to comment.