tests/regtest: disable incompatible validatepegin for liquidd
Otherwise liquidd startup fails. This bug was not covered by our tests, because we're not combining `regtest` with `secure-node`. But nixbitcoin.org does, which should suffice for now.
This commit is contained in:
parent
c30fe1919b
commit
b3e868d0af
2 changed files with 9 additions and 0 deletions
|
|
@ -234,6 +234,12 @@ in {
|
||||||
inherit options;
|
inherit options;
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
assertions = [
|
||||||
|
{ assertion = bitcoind.regtest -> cfg.validatepegin != true;
|
||||||
|
message = "liquidd: `validatepegin` is incompatible with regtest.";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
services.bitcoind.enable = true;
|
services.bitcoind.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = [
|
environment.systemPackages = [
|
||||||
|
|
|
||||||
|
|
@ -248,6 +248,9 @@ let
|
||||||
services.lightning-pool.extraConfig = ''
|
services.lightning-pool.extraConfig = ''
|
||||||
auctionserver=localhost
|
auctionserver=localhost
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# `validatepegin` is incompatible with regtest
|
||||||
|
services.liquidd.validatepegin = mkForce false;
|
||||||
};
|
};
|
||||||
|
|
||||||
## Examples / debug helper
|
## Examples / debug helper
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue