Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump Bitcoin Core to v28.0 #676

Merged
merged 1 commit into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ class Image:

GOLANG_VERSION = BuildArgument(
name="GOLANG_VERSION",
value="1.22.6-bullseye",
value="1.23.2-bullseye",
)

BITCOIN_VERSION = "27.1"
BITCOIN_VERSION = "28.0"
LITECOIN_VERSION = "0.21.3"
ELEMENTS_VERSION = "23.2.1"
GETH_VERSION = "1.14.8"
GETH_VERSION = "1.14.11"

C_LIGHTNING_VERSION = "24.08.1"
ECLAIR_VERSION = "0.10.0"
Expand Down Expand Up @@ -102,7 +102,7 @@ class Image:
],
),
"regtest": Image(
tag="4.5.6",
tag="4.5.7",
arguments=[
UBUNTU_VERSION,
BITCOIN_BUILD_ARG,
Expand Down
4 changes: 2 additions & 2 deletions docker/regtest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ ARG C_LIGHTNING_VERSION
FROM boltz/bitcoin-core:${BITCOIN_VERSION} AS bitcoin-core
FROM ghcr.io/vulpemventures/elements:${ELEMENTS_VERSION} AS elements-core

FROM boltz/lnd:${LND_VERSION} as lnd
FROM boltz/c-lightning:${C_LIGHTNING_VERSION} as cln
FROM boltz/lnd:${LND_VERSION} AS lnd
FROM boltz/c-lightning:${C_LIGHTNING_VERSION} AS cln

FROM ubuntu:${UBUNTU_VERSION}

Expand Down
2 changes: 2 additions & 0 deletions docker/regtest/data/core/config.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ fallbackfee=0.00001

rpcallowip=0.0.0.0/0

deprecatedrpc=warnings

[regtest]
rpcbind=0.0.0.0
2 changes: 1 addition & 1 deletion docker/regtest/startRegtest.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ docker run \
-p 9735:9735 \
-p 9293:9293 \
-p 9292:9292 \
boltz/regtest:4.5.6
boltz/regtest:4.5.7

docker exec regtest bash -c "cp /root/.lightning/regtest/*.pem /root/.lightning/regtest/certs"
docker exec regtest chmod -R 777 /root/.lightning/regtest/certs
Expand Down
2 changes: 1 addition & 1 deletion lib/VersionCheck.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class VersionCheck {
> = {
[ChainClient.serviceName]: {
minimal: 220000,
maximal: 270100,
maximal: 280000,
},
[ClnClient.serviceName]: {
minimal: '23.05',
Expand Down
2 changes: 1 addition & 1 deletion swagger-spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -2428,7 +2428,7 @@
},
"description": {
"type": "string",
"description": "Description of the created invoice and magic routing hint. Only ASCII and a maximum length of 40 characters is allowed"
"description": "Description of the created invoice and magic routing hint. Only ASCII and a maximum length of 100 characters is allowed"
},
"descriptionHash": {
"type": "string",
Expand Down