mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
edba938996
This commit adds a new build tag `integration` and removes the old tag `rpctest` for clarity. Multiple unnecessary usages of `build !rpctest` is also removed.
12 lines
234 B
Go
12 lines
234 B
Go
//go:build integration
|
|
|
|
package funding
|
|
|
|
import "time"
|
|
|
|
func init() {
|
|
// For itest, we will use a much shorter checking interval here as
|
|
// local communications are very fast.
|
|
checkPeerFundingLockInterval = 10 * time.Millisecond
|
|
}
|