config: define InactiveChanTimeout

This commit is contained in:
Johan T. Halseth 2018-08-09 10:03:14 +02:00
parent b5bfdd72b5
commit 9e44b38eee
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

@ -47,6 +47,7 @@ const (
defaultMaxPendingChannels = 1 defaultMaxPendingChannels = 1
defaultNoEncryptWallet = false defaultNoEncryptWallet = false
defaultTrickleDelay = 30 * 1000 defaultTrickleDelay = 30 * 1000
defaultInactiveChanTimeout = 20 * time.Minute
defaultMaxLogFiles = 3 defaultMaxLogFiles = 3
defaultMaxLogFileSize = 10 defaultMaxLogFileSize = 10
@ -227,6 +228,7 @@ type config struct {
NoEncryptWallet bool `long:"noencryptwallet" description:"If set, wallet will be encrypted using the default passphrase."` NoEncryptWallet bool `long:"noencryptwallet" description:"If set, wallet will be encrypted using the default passphrase."`
TrickleDelay int `long:"trickledelay" description:"Time in milliseconds between each release of announcements to the network"` TrickleDelay int `long:"trickledelay" description:"Time in milliseconds between each release of announcements to the network"`
InactiveChanTimeout time.Duration `long:"inactivechantimeout" description:"If a channel has been inactive for the set time, send a ChannelUpdate disabling it."`
Alias string `long:"alias" description:"The node alias. Used as a moniker by peers and intelligence services"` Alias string `long:"alias" description:"The node alias. Used as a moniker by peers and intelligence services"`
Color string `long:"color" description:"The color of the node in hex format (i.e. '#3399FF'). Used to customize node appearance in intelligence services"` Color string `long:"color" description:"The color of the node in hex format (i.e. '#3399FF'). Used to customize node appearance in intelligence services"`
@ -300,6 +302,7 @@ func loadConfig() (*config, error) {
MaxChannelSize: int64(maxFundingAmount), MaxChannelSize: int64(maxFundingAmount),
}, },
TrickleDelay: defaultTrickleDelay, TrickleDelay: defaultTrickleDelay,
InactiveChanTimeout: defaultInactiveChanTimeout,
Alias: defaultAlias, Alias: defaultAlias,
Color: defaultColor, Color: defaultColor,
MinChanSize: int64(minChanFundingSize), MinChanSize: int64(minChanFundingSize),