From d831556a6878f72efec6ffb14b0ccec1d669e361 Mon Sep 17 00:00:00 2001 From: Vincenzo Palazzo Date: Tue, 26 Sep 2023 18:05:49 +0200 Subject: [PATCH] ci: update to the last cln version on master Signed-off-by: Vincenzo Palazzo --- coffee_testing/src/cln.rs | 1 + docker/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/coffee_testing/src/cln.rs b/coffee_testing/src/cln.rs index 67bf6112..10393d05 100644 --- a/coffee_testing/src/cln.rs +++ b/coffee_testing/src/cln.rs @@ -33,6 +33,7 @@ pub mod macros { .arg(format!("--lightning-dir={path}")) .arg("--dev-fast-gossip") .arg("--funding-confirms=1") + .arg("--developer") .stdout(Stdio::null()) .spawn() }.await diff --git a/docker/Dockerfile b/docker/Dockerfile index 54320b27..875a8daf 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -30,7 +30,7 @@ ENV CLIGHTNING_VERSION=master RUN git clone https://github.com/ElementsProject/lightning.git --branch=$CLIGHTNING_VERSION && \ cd lightning && \ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && \ - ./configure --enable-developer --disable-rust && git submodule update --init --recursive && \ + ./configure --disable-rust && git submodule update --init --recursive && \ pip3 install --upgrade pip && \ pip3 install mako mistune==0.8.4 mrkd && \ make -j$(nproc) && make install