aperture: add descriptions to lnd config

This commit is contained in:
carla
2021-09-27 13:25:41 +02:00
parent 264fc2f998
commit 9bddd76993

View File

@@ -26,13 +26,13 @@ type AuthConfig struct {
// LndHost is the hostname of the LND instance to connect to.
LndHost string `long:"lndhost" description:"Hostname of the LND instance to connect to"`
TLSPath string `long:"tlspath"`
TLSPath string `long:"tlspath" description:"Path to LND instance's tls certificate"`
MacDir string `long:"macdir"`
MacDir string `long:"macdir" description:"Directory containing LND instance's macaroons"`
Network string `long:"network"`
Network string `long:"network" description:"The network LND is connected to." choice:"regtest" choice:"simnet" choice:"testnet" choice:"mainnet"`
Disable bool `long:"disable"`
Disable bool `long:"disable" description:"Whether to disable LND auth."`
}
type TorConfig struct {