Skip to content

Commit

Permalink
chore: update Bitcoin Core to v26.1 (#519)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael1011 committed Apr 2, 2024
1 parent d9031e4 commit 8c1dbe2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions docker/bitcoin-core/Dockerfile
Expand Up @@ -65,8 +65,9 @@ FROM ubuntu:${UBUNTU_VERSION}

ARG VERSION

RUN apt-get update && apt-get -y upgrade
RUN apt-get -y install \
RUN apt-get update && \
apt-get -y upgrade && \
apt-get -y install \
libzmq3-dev \
libdb-dev \
libdb++-dev \
Expand All @@ -75,7 +76,8 @@ RUN apt-get -y install \
libboost-chrono-dev \
libboost-system-dev \
libboost-thread-dev \
libboost-filesystem-dev
libboost-filesystem-dev && \
rm -rf /var/lib/apt/lists/*

COPY --from=bitcoin-core /opt/bitcoin-${VERSION}/bin /bin

Expand Down
4 changes: 2 additions & 2 deletions docker/build.py
Expand Up @@ -40,7 +40,7 @@ class Image:
value="1.22.0-bullseye",
)

BITCOIN_VERSION = "26.0"
BITCOIN_VERSION = "26.1"
LITECOIN_VERSION = "0.21.2.2"
ELEMENTS_VERSION = "23.2.1"
GETH_VERSION = "1.13.14"
Expand Down Expand Up @@ -101,7 +101,7 @@ class Image:
],
),
"regtest": Image(
tag="4.4.3",
tag="4.4.4",
arguments=[
UBUNTU_VERSION,
BITCOIN_BUILD_ARG,
Expand Down
2 changes: 1 addition & 1 deletion docker/regtest/startRegtest.sh
Expand Up @@ -28,7 +28,7 @@ docker run \
-p 9735:9735 \
-p 9293:9293 \
-p 9292:9292 \
boltz/regtest:4.4.3
boltz/regtest:4.4.4

docker exec regtest bash -c "cp /root/.lightning/regtest/*.pem /root/.lightning/regtest/certs"
docker exec regtest chmod -R 777 /root/.lightning/regtest/certs
2 changes: 1 addition & 1 deletion lib/VersionCheck.ts
Expand Up @@ -79,7 +79,7 @@ class VersionCheck {
> = {
[ChainClient.serviceName]: {
minimal: 220000,
maximal: 260000,
maximal: 260100,
},
[ClnClient.serviceName]: {
minimal: '23.05',
Expand Down

0 comments on commit 8c1dbe2

Please sign in to comment.