// IsDevBuild returns a bool to indicate whether we are in a development
// environment.
//
// NOTE: always return true here.
funcIsDevBuild()bool{
returntrue
}
// DevConfig specifies configs used for integration tests. These configs can
// only be used in tests and must NOT be exported for production usage.
//
//nolint:lll
typeDevConfigstruct{
ProcessChannelReadyWaittime.Duration`long:"processchannelreadywait" description:"Time to sleep before processing remote node's channel_ready message."`
ReservationTimeouttime.Duration`long:"reservationtimeout" description:"The maximum time we keep a pending channel open flow in memory."`
ZombieSweeperIntervaltime.Duration`long:"zombiesweeperinterval" description:"The time interval at which channel opening flows are evaluated for zombie status."`