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
This commit is contained in:
Marko
2020-05-29 13:05:50 +02:00
committed by GitHub
parent bdf268e03e
commit d5a60b0eb0

View File

@@ -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) {