You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lncfg/dev_integration.go
+23-1Lines changed: 23 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,9 @@
2
2
3
3
package lncfg
4
4
5
-
import"time"
5
+
import (
6
+
"time"
7
+
)
6
8
7
9
// IsDevBuild returns a bool to indicate whether we are in a development
8
10
// environment.
@@ -18,9 +20,29 @@ func IsDevBuild() bool {
18
20
//nolint:lll
19
21
typeDevConfigstruct {
20
22
ProcessChannelReadyWait time.Duration`long:"processchannelreadywait" description:"Time to sleep before processing remote node's channel_ready message."`
23
+
ReservationTimeout time.Duration`long:"reservationtimeout" description:"The maximum time we keep a pending channel open flow in memory."`
24
+
ZombieSweeperInterval time.Duration`long:"zombiesweeperinterval" description:"The time interval at which channel opening flows are evaluated for zombie status."`
21
25
}
22
26
23
27
// ChannelReadyWait returns the config value `ProcessChannelReadyWait`.
0 commit comments