mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 22:25:24 +01:00
This commit is created by running the following commands, ```shell gofmt -d -w -r 'sendFundingLocked -> sendChannelReady' . gofmt -d -w -r 'handleFundingLockedMtx -> handleChannelReadyMtx' . gofmt -d -w -r 'handleFundingLockedBarriers -> handleChannelReadyBarriers' . gofmt -d -w -r 'receivedFundingLocked -> receivedChannelReady' . gofmt -d -w -r 'handleFundingLocked -> handleChannelReady' . gofmt -d -w -r 'fundingLockedSent -> channelReadySent' . gofmt -d -w -r 'checkPeerFundingLockInterval -> checkPeerChannelReadyInterval' . ```
11 lines
235 B
Go
11 lines
235 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.
|
|
checkPeerChannelReadyInterval = 10 * time.Millisecond
|
|
}
|