mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-24 06:47:44 +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:
commit
2de8571ab3
2 changed files with 5 additions and 3 deletions
|
@ -30,6 +30,8 @@
|
||||||
|
|
||||||
* [Add json flag to
|
* [Add json flag to
|
||||||
trackpayment](https://github.com/lightningnetwork/lnd/pull/6060)
|
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
|
* [Fix memory corruption in Mission Control
|
||||||
Store](https://github.com/lightningnetwork/lnd/pull/6068)
|
Store](https://github.com/lightningnetwork/lnd/pull/6068)
|
||||||
|
|
|
@ -21,9 +21,9 @@ var (
|
||||||
// ErrInvalidTimeoutConstraints signals that the ChanStatusManager could
|
// ErrInvalidTimeoutConstraints signals that the ChanStatusManager could
|
||||||
// not be initialized because the timeouts and sample intervals were
|
// not be initialized because the timeouts and sample intervals were
|
||||||
// malformed.
|
// malformed.
|
||||||
ErrInvalidTimeoutConstraints = errors.New("active_timeout + " +
|
ErrInvalidTimeoutConstraints = errors.New("chan-enable-timeout + " +
|
||||||
"sample_interval must be less than or equal to " +
|
"chan-status-sample-interval must <= chan-disable-timeout " +
|
||||||
"inactive_timeout and be positive integers")
|
"and all three chan configs must be positive integers")
|
||||||
|
|
||||||
// ErrEnableInactiveChan signals that a request to enable a channel
|
// ErrEnableInactiveChan signals that a request to enable a channel
|
||||||
// could not be completed because the channel isn't actually active at
|
// could not be completed because the channel isn't actually active at
|
||||||
|
|
Loading…
Add table
Reference in a new issue