mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 06:21:40 +01:00
netann: clarify invalid config timeout constraints [skip ci]
This commit is contained in:
parent
71b23a2c54
commit
6fb3c25228
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue