Skip to content

Commit

Permalink
meta: fix cln version to 24.05
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
vincenzopalazzo committed Nov 18, 2024
1 parent fb0efe2 commit c9e78d9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/Dockerfile.clightning
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN apt-get -qq update && \
wget \
gettext \
xsltproc \
zlib1g-dev \
zlib1g-dev \
jq && \
rm -rf /var/lib/apt/lists/*

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

0 comments on commit c9e78d9

Please sign in to comment.