Skip to content

Commit 6696c40

Browse files
meta: fix cln version to 24.05
cln version 24.05 is the last version of core lightning that it is working with the version of prototest. Most lickly this is a cln bug described in the following issue [1]. However, we pin the cln version and report the bug to mainline probably someone will be able to find the real issue in the cln or lnprototest at some point. [1] #123 Signed-off-by: Vincenzo Palazzo <[email protected]>
1 parent fb0efe2 commit 6696c40

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docker/Dockerfile.clightning

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ RUN apt-get -qq update && \
3838
wget \
3939
gettext \
4040
xsltproc \
41-
zlib1g-dev \
41+
zlib1g-dev \
4242
jq && \
4343
rm -rf /var/lib/apt/lists/*
4444

@@ -59,7 +59,8 @@ RUN pip3 install -U pip && \
5959
RUN git config --global user.name "John Doe" && \
6060
git config --global user.email [email protected] && \
6161
git clone https://github.com/ElementsProject/lightning.git && \
62-
cd lightning && \
62+
# FIXME: cln 24.05 is the last version that works with the current lnprototest.
63+
cd lightning && git checkout v24.05 \
6364
pip3 install mako --break-system-packages && pip3 install grpcio-tools --break-system-packages && \
6465
./configure && \
6566
make -j$(nproc)

0 commit comments

Comments
 (0)