Skip to content

Commit b9019d1

Browse files
committed
test: remove clightning TODO-EXTERNAL requiring to disable offers
1 parent 7fb481c commit b9019d1

File tree

7 files changed

+0
-37
lines changed

7 files changed

+0
-37
lines changed

examples/deploy-container-minimal.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,8 @@ cat > "$tmpDir/configuration.nix" <<EOF
2121
password = "a";
2222
};
2323
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s
24-
# TODO-EXTERNAL:
25-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
26-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
2724
services.clightning.extraConfig = ''
2825
disable-dns
29-
disable-plugin=offers
3026
'';
3127
}
3228
EOF

examples/deploy-container.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,6 @@ read -rd '' src <<EOF || true
8383
$(realpath "$configuration")
8484
];
8585
nix-bitcoin.generateSecrets = true;
86-
87-
# TODO-EXTERNAL:
88-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
89-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
90-
services.clightning.extraConfig = ''
91-
disable-plugin=offers
92-
'';
9386
};
9487
};
9588
}

examples/deploy-qemu-vm.sh

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,6 @@ nix-build --out-link "$tmpDir/vm" - <<'EOF'
3030
<qemu-vm/vm-config.nix>
3131
];
3232
nix-bitcoin.generateSecrets = true;
33-
34-
# TODO-EXTERNAL:
35-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
36-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
37-
services.clightning.extraConfig = ''
38-
disable-plugin=offers
39-
'';
4033
};
4134
}).config.system.build.vm
4235
EOF

examples/krops-vm-configuration.nix

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,4 @@
44
<nix-bitcoin/modules/deployment/krops.nix>
55
<qemu-vm/vm-config.nix>
66
];
7-
8-
# TODO-EXTERNAL:
9-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
10-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
11-
services.clightning.extraConfig = ''
12-
disable-plugin=offers
13-
'';
147
}

examples/qemu-vm/minimal-vm.nix

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,8 @@ rec {
2727
nix-bitcoin.generateSecrets = true;
2828
services.clightning.enable = true;
2929
# disable-dns leads to faster startup in offline VMs
30-
# TODO-EXTERNAL:
31-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
32-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
3330
services.clightning.extraConfig = ''
3431
disable-dns
35-
disable-plugin=offers
3632
'';
3733

3834
# Avoid lengthy build of the nixos manual

test/clightning-replication.nix

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,8 @@ let
2424

2525
# TODO-EXTERNAL:
2626
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s.
27-
# TODO-EXTERNAL:
28-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
29-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
3027
extraConfig = ''
3128
disable-dns
32-
disable-plugin=offers
3329
'';
3430
};
3531
};

test/tests.nix

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,8 @@ let
4343

4444
# TODO-EXTERNAL:
4545
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s.
46-
# TODO-EXTERNAL:
47-
# When bitcoind is not fully synced, the offers plugin in clightning 24.05
48-
# crashes (see https://github.com/ElementsProject/lightning/issues/7378).
4946
services.clightning.extraConfig = ''
5047
${optionalString config.test.noConnections "disable-dns"}
51-
disable-plugin=offers
5248
'';
5349
test.data.clightning-plugins = let
5450
plugins = config.services.clightning.plugins;

0 commit comments

Comments
 (0)