mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 14:40:30 +01:00
12 lines
230 B
Go
12 lines
230 B
Go
|
//go:build rpctest
|
||
|
|
||
|
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
|
||
|
}
|