Improve electrs ports descriptions

This commit is contained in:
Ștefan D. Mihăilă 2019-08-07 15:05:41 +02:00
parent cd722cac1a
commit 4e6e05a4a8
No known key found for this signature in database
GPG Key ID: 6220AD7846220A52
1 changed files with 3 additions and 3 deletions

View File

@ -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;
};