mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 09:53:54 +01:00
112dc1faca
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' . ```
12 lines
235 B
Go
12 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
|
|
}
|