mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 18:10:34 +01:00
c4913e6f4a
We now require the lnd to be fully started when creating a new node using newNode.
32 lines
918 B
Go
32 lines
918 B
Go
// +build kvdb_etcd
|
|
|
|
package lntest
|
|
|
|
import "time"
|
|
|
|
const (
|
|
// MinerMempoolTimeout is the max time we will wait for a transaction
|
|
// to propagate to the mining node's mempool.
|
|
MinerMempoolTimeout = time.Minute
|
|
|
|
// ChannelOpenTimeout is the max time we will wait before a channel to
|
|
// be considered opened.
|
|
ChannelOpenTimeout = time.Second * 30
|
|
|
|
// ChannelCloseTimeout is the max time we will wait before a channel is
|
|
// considered closed.
|
|
ChannelCloseTimeout = time.Second * 120
|
|
|
|
// DefaultTimeout is a timeout that will be used for various wait
|
|
// scenarios where no custom timeout value is defined.
|
|
DefaultTimeout = time.Second * 30
|
|
|
|
// AsyncBenchmarkTimeout is the timeout used when running the async
|
|
// payments benchmark.
|
|
AsyncBenchmarkTimeout = 2 * time.Minute
|
|
|
|
// NodeStartTimeout is the timeout value when waiting for a node to
|
|
// become fully started.
|
|
NodeStartTimeout = time.Second * 60
|
|
)
|