From 4e6e05a4a8e8bef1a40ac0590b2781ee2ec8962c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20D=2E=20Mih=C4=83il=C4=83?= Date: Wed, 7 Aug 2019 15:05:41 +0200 Subject: [PATCH] Improve electrs ports descriptions --- modules/electrs.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/electrs.nix b/modules/electrs.nix index c5fc634..0de6a53 100644 --- a/modules/electrs.nix +++ b/modules/electrs.nix @@ -41,17 +41,17 @@ in { port = mkOption { type = types.ints.u16; default = 50001; - description = "Override the default port on which to listen for connections."; + description = "RPC port."; }; onionport = mkOption { type = types.ints.u16; default = 50002; - description = "Override the default port on which to listen for connections."; + description = "Port on which to listen for tor client connections."; }; nginxport = mkOption { type = types.ints.u16; default = 50003; - description = "Override the default port on which to listen for connections."; + description = "Port on which to listen for TLS client connections."; }; enforceTor = nix-bitcoin-services.enforceTor; };