From e35a42fc68156429a0e4f9adbad68c3112358b92 Mon Sep 17 00:00:00 2001 From: Sam Kleinman Date: Tue, 28 Sep 2021 10:39:26 -0400 Subject: [PATCH] e2e: use smaller transactions (#7016) 75% of the failures in the last run all ran with the 10kb transactions. I'd like to dial it back and see if things improve more. --- test/e2e/generator/generate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/generator/generate.go b/test/e2e/generator/generate.go index 2c69ea6b8..81c1be7ef 100644 --- a/test/e2e/generator/generate.go +++ b/test/e2e/generator/generate.go @@ -63,7 +63,7 @@ var ( "restart": 0.1, } evidence = uniformChoice{0, 1, 10} - txSize = uniformChoice{1024, 10240} // either 1kb or 10kb + txSize = uniformChoice{1024, 4096} // either 1kb or 4kb ipv6 = uniformChoice{false, true} keyType = uniformChoice{types.ABCIPubKeyTypeEd25519, types.ABCIPubKeyTypeSecp256k1} )