From d5a60b0eb060ff450eac42b225f48af61a12fdcb Mon Sep 17 00:00:00 2001 From: Marko Date: Fri, 29 May 2020 13:05:50 +0200 Subject: [PATCH] rpc: increase waitForEventTimeout to 8 seconds (#4917) ## Description I was able to reproduce this non-determinism locally After increasing the timeout to 8 seconds from 5 I was not able to reproduce it Closes: #2856 --- rpc/client/event_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpc/client/event_test.go b/rpc/client/event_test.go index e6b5bd0c8..ae04e34c2 100644 --- a/rpc/client/event_test.go +++ b/rpc/client/event_test.go @@ -17,7 +17,7 @@ import ( "github.com/tendermint/tendermint/types" ) -var waitForEventTimeout = 5 * time.Second +var waitForEventTimeout = 8 * time.Second // MakeTxKV returns a text transaction, allong with expected key, value pair func MakeTxKV() ([]byte, []byte, []byte) {