github.com/decred/dcrlnd@v0.7.6/lncfg/automation.go (about)

     1  package lncfg
     2  
     3  // Automation holds some server level automation config options.
     4  type Automation struct {
     5  	// ForceCloseChanReestablishWait is the time after which the automation
     6  	// server force closes a channel where the local peer has sent
     7  	// ChannelReestablish messages but the remote peer does not.
     8  	ForceCloseChanReestablishWait int64 `long:"closechanreestablishwait" description:"Force close a channel if the difference between time channel reestablish msgs were sent and received is higher than the specified one"`
     9  }