@ -127,17 +137,19 @@ type autoPilotConfig struct {
Allocationfloat64`long:"allocation" description:"The percentage of total funds that should be committed to automatic channel establishment"`
MinChannelSizeint64`long:"minchansize" description:"The smallest channel that the autopilot agent should create"`
MaxChannelSizeint64`long:"maxchansize" description:"The largest channel that the autopilot agent should create"`
Privatebool`long:"private" description:"Whether the channels created by the autopilot agent should be private or not. Private channels won't be announced to the network."`
MinConfsint32`long:"minconfs" description:"The minimum number of confirmations each of your inputs in funding transactions created by the autopilot agent must have."`
}
typetorConfigstruct{
Activebool`long:"active" description:"Allow outbound and inbound connections to be routed through Tor"`
SOCKSstring`long:"socks" description:"The host:port that Tor's exposed SOCKS5 proxy is listening on"`
DNSstring`long:"dns" description:"The DNS server as host:port that Tor will use for SRV queries - NOTE must have TCP resolution enabled"`
StreamIsolationbool`long:"streamisolation" description:"Enable Tor stream isolation by randomizing user credentials for each connection."`
Controlstring`long:"control" description:"The host:port that Tor is listening on for Tor control connections"`
V2bool`long:"v2" description:"Automatically set up a v2 onion service to listen for inbound connections"`
V2PrivateKeyPathstring`long:"v2privatekeypath" description:"The path to the private key of the onion service being created"`
V3bool`long:"v3" description:"Use a v3 onion service to listen for inbound connections"`
Activebool`long:"active" description:"Allow outbound and inbound connections to be routed through Tor"`
SOCKSstring`long:"socks" description:"The host:port that Tor's exposed SOCKS5 proxy is listening on"`
DNSstring`long:"dns" description:"The DNS server as host:port that Tor will use for SRV queries - NOTE must have TCP resolution enabled"`
StreamIsolationbool`long:"streamisolation" description:"Enable Tor stream isolation by randomizing user credentials for each connection."`
Controlstring`long:"control" description:"The host:port that Tor is listening on for Tor control connections"`
V2bool`long:"v2" description:"Automatically set up a v2 onion service to listen for inbound connections"`
V3bool`long:"v3" description:"Automatically set up a v3 onion service to listen for inbound connections"`
PrivateKeyPathstring`long:"privatekeypath" description:"The path to the private key of the onion service being created"`
}
typezapConnectConfigstruct{
@ -214,7 +226,7 @@ type config struct {
NoNetBootstrapbool`long:"nobootstrap" description:"If true, then automatic network bootstrapping will not be attempted."`
NoEncryptWalletbool`long:"noencryptwallet" description:"If set, wallet will be encrypted using the default passphrase."`
NoSeedBackupbool`long:"noseedbackup" description:"If true, NO SEED WILL BE EXPOSED AND THE WALLET WILL BE ENCRYPTED USING THE DEFAULT PASSPHRASE -- EVER. THIS FLAG IS ONLY FOR TESTING AND IS BEING DEPRECATED."`
TrickleDelayint`long:"trickledelay" description:"Time in milliseconds between each release of announcements to the network"`
InactiveChanTimeouttime.Duration`long:"inactivechantimeout" description:"If a channel has been inactive for the set time, send a ChannelUpdate disabling it."`
@ -225,7 +237,11 @@ type config struct {
NoChanUpdatesbool`long:"nochanupdates" description:"If specified, lnd will not request real-time channel updates from connected peers. This option should be used by routing nodes to save bandwidth."`
RejectPushbool`long:"rejectpush" description:"If true, lnd will not accept channel opening requests with non-zero push amounts. This should prevent accidental pushes to merchant nodes."`