mirror of
https://github.com/aljazceru/breez-lnd.git
synced 2026-01-31 20:24:27 +01:00
Merge pull request #6073 from mattbajorek/5518-clarify-invalid-config-timeout-constraints
netann: clarify invalid config timeout constraints [skip ci]
This commit is contained in:
@@ -30,6 +30,8 @@
|
||||
|
||||
* [Add json flag to
|
||||
trackpayment](https://github.com/lightningnetwork/lnd/pull/6060)
|
||||
* [Clarify invalid config timeout
|
||||
constraints](https://github.com/lightningnetwork/lnd/pull/6073)
|
||||
|
||||
* [Fix memory corruption in Mission Control
|
||||
Store](https://github.com/lightningnetwork/lnd/pull/6068)
|
||||
|
||||
@@ -21,9 +21,9 @@ var (
|
||||
// ErrInvalidTimeoutConstraints signals that the ChanStatusManager could
|
||||
// not be initialized because the timeouts and sample intervals were
|
||||
// malformed.
|
||||
ErrInvalidTimeoutConstraints = errors.New("active_timeout + " +
|
||||
"sample_interval must be less than or equal to " +
|
||||
"inactive_timeout and be positive integers")
|
||||
ErrInvalidTimeoutConstraints = errors.New("chan-enable-timeout + " +
|
||||
"chan-status-sample-interval must <= chan-disable-timeout " +
|
||||
"and all three chan configs must be positive integers")
|
||||
|
||||
// ErrEnableInactiveChan signals that a request to enable a channel
|
||||
// could not be completed because the channel isn't actually active at
|
||||
|
||||
Reference in New Issue
Block a user