Skip to content

Commit

Permalink
Merge pull request fedimint#6192 from tvolk131/fix_macos_mprocs
Browse files Browse the repository at this point in the history
fix: revert cln version bump
  • Loading branch information
joschisan authored Oct 21, 2024
2 parents 437a887 + c0289d7 commit a710107
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
1 change: 0 additions & 1 deletion devimint/src/cfg/lightningd.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ bitcoin-rpcuser=bitcoin
bitcoin-rpcpassword=bitcoin
bitcoin-rpcport={bitcoin_rpcport}
addr=127.0.0.1:{port}
developer
4 changes: 0 additions & 4 deletions gateway/ln-gateway/src/bin/cln_extension.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,6 @@ struct ClnExtensionOpts {
/// Gateway CLN extension service listen address
#[arg(long = "fm-gateway-listen", env = FM_CLN_EXTENSION_LISTEN_ADDRESS_ENV)]
fm_gateway_listen: Option<SocketAddr>,

/// Developer mode flag
#[arg(long = "developer")]
developer: bool,
}

#[tokio::main]
Expand Down
9 changes: 6 additions & 3 deletions nix/overlays/clightning.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
final: prev: {
clightning = prev.clightning.overrideAttrs (oldAttrs: rec {
version = "24.08.1";
version = "23.05.2";
src = prev.fetchurl {
url = "https://github.com/ElementsProject/lightning/releases/download/v${version}/clightning-v${version}.zip";
sha256 = "sha256-2ZKvhNuzGftKwSdmMkHOwE9UEI5Ewn5HHSyyZUcCwB4=";
sha256 = "sha256-Tj5ybVaxpk5wmOw85LkeU4pgM9NYl6SnmDG2gyXrTHw=";
};
makeFlags = [ "VERSION=v${version}" ];
configureFlags = [ "--disable-valgrind" ];
configureFlags = [
"--enable-developer"
"--disable-valgrind"
];
env = {
NIX_CFLAGS_COMPILE = "-w";
};
Expand Down

0 comments on commit a710107

Please sign in to comment.