diff --git a/lntest/wait/timeouts.go b/lntest/wait/timeouts.go index 507edd87a..e17c8a433 100644 --- a/lntest/wait/timeouts.go +++ b/lntest/wait/timeouts.go @@ -24,11 +24,11 @@ const ( // AsyncBenchmarkTimeout is the timeout used when running the async // payments benchmark. - AsyncBenchmarkTimeout = 2 * time.Minute + AsyncBenchmarkTimeout = time.Minute * 2 // NodeStartTimeout is the timeout value when waiting for a node to // become fully started. - NodeStartTimeout = time.Second * 120 + NodeStartTimeout = time.Minute * 2 // SqliteBusyTimeout is the maximum time that a call to the sqlite db // will wait for the connection to become available. diff --git a/lntest/wait/timeouts_darwin.go b/lntest/wait/timeouts_darwin.go index 5cfc16bd7..18c4ec653 100644 --- a/lntest/wait/timeouts_darwin.go +++ b/lntest/wait/timeouts_darwin.go @@ -16,7 +16,7 @@ const ( // ChannelCloseTimeout is the max time we will wait before a channel is // considered closed. - ChannelCloseTimeout = time.Second * 30 + ChannelCloseTimeout = time.Second * 60 // DefaultTimeout is a timeout that will be used for various wait // scenarios where no custom timeout value is defined. @@ -29,7 +29,7 @@ const ( // NodeStartTimeout is the timeout value when waiting for a node to // become fully started. - NodeStartTimeout = time.Second * 120 + NodeStartTimeout = time.Minute * 2 // SqliteBusyTimeout is the maximum time that a call to the sqlite db // will wait for the connection to become available. diff --git a/lntest/wait/timeouts_remote_db.go b/lntest/wait/timeouts_remote_db.go index c6805118b..2e798b709 100644 --- a/lntest/wait/timeouts_remote_db.go +++ b/lntest/wait/timeouts_remote_db.go @@ -16,7 +16,7 @@ const ( // ChannelCloseTimeout is the max time we will wait before a channel is // considered closed. - ChannelCloseTimeout = time.Second * 120 + ChannelCloseTimeout = time.Second * 30 // DefaultTimeout is a timeout that will be used for various wait // scenarios where no custom timeout value is defined. @@ -24,11 +24,11 @@ const ( // AsyncBenchmarkTimeout is the timeout used when running the async // payments benchmark. - AsyncBenchmarkTimeout = 3 * time.Minute + AsyncBenchmarkTimeout = time.Minute * 2 // NodeStartTimeout is the timeout value when waiting for a node to // become fully started. - NodeStartTimeout = time.Second * 120 + NodeStartTimeout = time.Minute * 2 // SqliteBusyTimeout is the maximum time that a call to the sqlite db // will wait for the connection to become available.