From a9b72ed8cf82dbd2cc35cfeea83f4d1f5448c51f Mon Sep 17 00:00:00 2001 From: Tanmay Date: Tue, 13 Aug 2024 11:14:56 -0400 Subject: [PATCH] add issue to track increase in DefaultCctxTimeout --- e2e/utils/zetacore.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/e2e/utils/zetacore.go b/e2e/utils/zetacore.go index 9122860d75..460ba62ed1 100644 --- a/e2e/utils/zetacore.go +++ b/e2e/utils/zetacore.go @@ -19,6 +19,9 @@ const ( EmergencyPolicyName = "emergency" AdminPolicyName = "admin" OperationalPolicyName = "operational" + // The timeout was increased from 4 to 6 , which allows for a higher success in test runs + // However this needs to be researched as to why the increase in timeout was needed. + // https://github.com/zeta-chain/node/issues/2690 DefaultCctxTimeout = 6 * time.Minute )