test: remove clightning TODO-EXTERNAL requiring to disable offers
This commit is contained in:
parent
7fb481cf58
commit
b9019d170d
7 changed files with 0 additions and 37 deletions
|
|
@ -21,12 +21,8 @@ cat > "$tmpDir/configuration.nix" <<EOF
|
||||||
password = "a";
|
password = "a";
|
||||||
};
|
};
|
||||||
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s
|
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s
|
||||||
# TODO-EXTERNAL:
|
|
||||||
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
|
|
||||||
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
|
|
||||||
services.clightning.extraConfig = ''
|
services.clightning.extraConfig = ''
|
||||||
disable-dns
|
disable-dns
|
||||||
disable-plugin=offers
|
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
|
||||||
|
|
@ -83,13 +83,6 @@ read -rd '' src <<EOF || true
|
||||||
$(realpath "$configuration")
|
$(realpath "$configuration")
|
||||||
];
|
];
|
||||||
nix-bitcoin.generateSecrets = true;
|
nix-bitcoin.generateSecrets = true;
|
||||||
|
|
||||||
# TODO-EXTERNAL:
|
|
||||||
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
|
|
||||||
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
|
|
||||||
services.clightning.extraConfig = ''
|
|
||||||
disable-plugin=offers
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -30,13 +30,6 @@ nix-build --out-link "$tmpDir/vm" - <<'EOF'
|
||||||
<qemu-vm/vm-config.nix>
|
<qemu-vm/vm-config.nix>
|
||||||
];
|
];
|
||||||
nix-bitcoin.generateSecrets = true;
|
nix-bitcoin.generateSecrets = true;
|
||||||
|
|
||||||
# TODO-EXTERNAL:
|
|
||||||
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
|
|
||||||
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
|
|
||||||
services.clightning.extraConfig = ''
|
|
||||||
disable-plugin=offers
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
}).config.system.build.vm
|
}).config.system.build.vm
|
||||||
EOF
|
EOF
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,4 @@
|
||||||
<nix-bitcoin/modules/deployment/krops.nix>
|
<nix-bitcoin/modules/deployment/krops.nix>
|
||||||
<qemu-vm/vm-config.nix>
|
<qemu-vm/vm-config.nix>
|
||||||
];
|
];
|
||||||
|
|
||||||
# TODO-EXTERNAL:
|
|
||||||
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
|
|
||||||
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
|
|
||||||
services.clightning.extraConfig = ''
|
|
||||||
disable-plugin=offers
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -27,12 +27,8 @@ rec {
|
||||||
nix-bitcoin.generateSecrets = true;
|
nix-bitcoin.generateSecrets = true;
|
||||||
services.clightning.enable = true;
|
services.clightning.enable = true;
|
||||||
# disable-dns leads to faster startup in offline VMs
|
# disable-dns leads to faster startup in offline VMs
|
||||||
# TODO-EXTERNAL:
|
|
||||||
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
|
|
||||||
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
|
|
||||||
services.clightning.extraConfig = ''
|
services.clightning.extraConfig = ''
|
||||||
disable-dns
|
disable-dns
|
||||||
disable-plugin=offers
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# Avoid lengthy build of the nixos manual
|
# Avoid lengthy build of the nixos manual
|
||||||
|
|
|
||||||
|
|
@ -24,12 +24,8 @@ let
|
||||||
|
|
||||||
# TODO-EXTERNAL:
|
# TODO-EXTERNAL:
|
||||||
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s.
|
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s.
|
||||||
# TODO-EXTERNAL:
|
|
||||||
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
|
|
||||||
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
|
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
disable-dns
|
disable-dns
|
||||||
disable-plugin=offers
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -43,12 +43,8 @@ let
|
||||||
|
|
||||||
# TODO-EXTERNAL:
|
# TODO-EXTERNAL:
|
||||||
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s.
|
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s.
|
||||||
# TODO-EXTERNAL:
|
|
||||||
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
|
|
||||||
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
|
|
||||||
services.clightning.extraConfig = ''
|
services.clightning.extraConfig = ''
|
||||||
${optionalString config.test.noConnections "disable-dns"}
|
${optionalString config.test.noConnections "disable-dns"}
|
||||||
disable-plugin=offers
|
|
||||||
'';
|
'';
|
||||||
test.data.clightning-plugins = let
|
test.data.clightning-plugins = let
|
||||||
plugins = config.services.clightning.plugins;
|
plugins = config.services.clightning.plugins;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue