forked from mirrors/nixpkgs
lighthouse: fix validator service not setting arguments properly
This commit is contained in:
parent
5eb3cbe103
commit
813a0ef809
|
@ -280,7 +280,7 @@ in {
|
||||||
${pkgs.lighthouse}/bin/lighthouse validator_client \
|
${pkgs.lighthouse}/bin/lighthouse validator_client \
|
||||||
--network ${cfg.network} \
|
--network ${cfg.network} \
|
||||||
--beacon-nodes ${lib.concatStringsSep "," cfg.validator.beaconNodes} \
|
--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}''} \
|
${optionalString cfg.validator.metrics.enable ''--metrics --metrics-address ${cfg.validator.metrics.address} --metrics-port ${toString cfg.validator.metrics.port}''} \
|
||||||
${cfg.extraArgs} ${cfg.validator.extraArgs}
|
${cfg.extraArgs} ${cfg.validator.extraArgs}
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue