summary refs log tree commit diff
diff options
context:
space:
mode:
authorOlaf Tomalka <olaf@tomalka.me>2022-12-16 01:11:14 +0100
committerYt <happysalada@proton.me>2022-12-19 16:41:43 -0500
commit813a0ef8093292454c2c702eab754117c0941bcd (patch)
treeda8aa68ddd9662170032b51f49b8837db40365f7
parent5eb3cbe103f5a79d459dace79005d857a40106bc (diff)
downloadnixpkgs-813a0ef8093292454c2c702eab754117c0941bcd.tar
nixpkgs-813a0ef8093292454c2c702eab754117c0941bcd.tar.gz
nixpkgs-813a0ef8093292454c2c702eab754117c0941bcd.tar.bz2
nixpkgs-813a0ef8093292454c2c702eab754117c0941bcd.tar.lz
nixpkgs-813a0ef8093292454c2c702eab754117c0941bcd.tar.xz
nixpkgs-813a0ef8093292454c2c702eab754117c0941bcd.tar.zst
nixpkgs-813a0ef8093292454c2c702eab754117c0941bcd.zip
lighthouse: fix validator service not setting arguments properly
-rw-r--r--nixos/modules/services/blockchain/ethereum/lighthouse.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/blockchain/ethereum/lighthouse.nix b/nixos/modules/services/blockchain/ethereum/lighthouse.nix
index 96d66e44d16..863e737d908 100644
--- a/nixos/modules/services/blockchain/ethereum/lighthouse.nix
+++ b/nixos/modules/services/blockchain/ethereum/lighthouse.nix
@@ -280,7 +280,7 @@ in {
         ${pkgs.lighthouse}/bin/lighthouse validator_client \
           --network ${cfg.network} \
           --beacon-nodes ${lib.concatStringsSep "," cfg.validator.beaconNodes} \
-          --datadir ${cfg.validator.dataDir}/${cfg.network}
+          --datadir ${cfg.validator.dataDir}/${cfg.network} \
           ${optionalString cfg.validator.metrics.enable ''--metrics --metrics-address ${cfg.validator.metrics.address} --metrics-port ${toString cfg.validator.metrics.port}''} \
           ${cfg.extraArgs} ${cfg.validator.extraArgs}
       '';