mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +01:00
3837c3f12e
Add fee.min-update-timeout and fee.max-update-timeout config options to allow configuration of the web fee estimator cache.
21 lines
1023 B
Go
21 lines
1023 B
Go
package lncfg
|
|
|
|
import "time"
|
|
|
|
// DefaultMinUpdateTimeout represents the minimum interval in which a
|
|
// WebAPIEstimator will request fresh fees from its API.
|
|
const DefaultMinUpdateTimeout = 5 * time.Minute
|
|
|
|
// DefaultMaxUpdateTimeout represents the maximum interval in which a
|
|
// WebAPIEstimator will request fresh fees from its API.
|
|
const DefaultMaxUpdateTimeout = 20 * time.Minute
|
|
|
|
// Fee holds the configuration options for fee estimation.
|
|
//
|
|
//nolint:lll
|
|
type Fee struct {
|
|
URL string `long:"url" description:"Optional URL for external fee estimation. If no URL is specified, the method for fee estimation will depend on the chosen backend and network. Must be set for neutrino on mainnet."`
|
|
MinUpdateTimeout time.Duration `long:"min-update-timeout" description:"The minimum interval in which fees will be updated from the specified fee URL."`
|
|
MaxUpdateTimeout time.Duration `long:"max-update-timeout" description:"The maximum interval in which fees will be updated from the specified fee URL."`
|
|
}
|