From 9ed341f44e298a656ed23206fe8596df6dfe1feb Mon Sep 17 00:00:00 2001 From: Callum Waters Date: Thu, 4 Mar 2021 09:53:11 +0100 Subject: [PATCH] bump e2e waiting timeout --- test/e2e/runner/wait.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/runner/wait.go b/test/e2e/runner/wait.go index 232d230d9..b1967cb9b 100644 --- a/test/e2e/runner/wait.go +++ b/test/e2e/runner/wait.go @@ -30,5 +30,5 @@ func WaitUntil(testnet *e2e.Testnet, height int64) error { // waitingTime estimates how long it should take for a node to reach the height. // More nodes in a network implies we may expect a slower network and may have to wait longer. func waitingTime(nodes int) time.Duration { - return time.Duration(20+(nodes*2)) * time.Second + return time.Duration(20+(nodes*4)) * time.Second }