github.com/decred/dcrlnd@v0.7.6/lncfg/dcrd.go (about) 1 package lncfg 2 3 type DcrdConfig struct { 4 RPCHost string `long:"rpchost" description:"The daemon's rpc listening address. If a port is omitted, then the default port for the selected chain parameters will be used."` 5 RPCUser string `long:"rpcuser" description:"Username for RPC connections"` 6 RPCPass string `long:"rpcpass" default-mask:"-" description:"Password for RPC connections"` 7 RPCCert string `long:"rpccert" description:"File containing the daemon's certificate file"` 8 RawRPCCert string `long:"rawrpccert" description:"The raw bytes of the daemon's PEM-encoded certificate chain which will be used to authenticate the RPC connection."` 9 }