From a1a90fd41f1fb1a8ad6e31573f2f1980353104d3 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Mon, 11 Jul 2016 22:32:20 -0400 Subject: [PATCH] consensus: increase mempool_test timeout --- consensus/mempool_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/mempool_test.go b/consensus/mempool_test.go index 6eb957c25..2a063be75 100644 --- a/consensus/mempool_test.go +++ b/consensus/mempool_test.go @@ -41,7 +41,7 @@ func TestTxConcurrentWithCommit(t *testing.T) { go appendTxsRange(0, NTxs) startTestRound(cs, height, round) - ticker := time.NewTicker(time.Second * 5) + ticker := time.NewTicker(time.Second * 20) for nTxs := 0; nTxs < NTxs; { select { case b := <-newBlockCh: