itest+lntest: add a dedicated timeout for sending payments

This commit adds a new timeout `PaymentTimeout` that's used when sending
payments. A potential bug is also marked in the test.
This commit is contained in:
yyforyongyu
2022-11-14 17:27:49 +08:00
parent ae6e109f35
commit d5af76cb29
7 changed files with 27 additions and 7 deletions

View File

@@ -33,4 +33,7 @@ const (
// SqliteBusyTimeout is the maximum time that a call to the sqlite db
// will wait for the connection to become available.
SqliteBusyTimeout = time.Second * 10
// PaymentTimeout is the timeout used when sending payments.
PaymentTimeout = time.Second * 60
)