mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-01-19 14:45:23 +01:00
24 lines
512 B
Go
24 lines
512 B
Go
|
//go:build !integration
|
||
|
|
||
|
package lncfg
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// IsDevBuild returns a bool to indicate whether we are in a development
|
||
|
// environment.
|
||
|
//
|
||
|
// NOTE: always return false here.
|
||
|
func IsDevBuild() bool {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
// DevConfig specifies development configs used for production. This struct
|
||
|
// should always remain empty.
|
||
|
type DevConfig struct{}
|
||
|
|
||
|
// ChannelReadyWait returns the config value, which is always 0 for production
|
||
|
// build.
|
||
|
func (d *DevConfig) ChannelReadyWait() time.Duration {
|
||
|
return 0
|
||
|
}
|