Browse Source

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.
wb/block-height-app-hash
Sam Kleinman 3 years ago
committed by GitHub
parent
commit
e35a42fc68
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      test/e2e/generator/generate.go

+ 1
- 1
test/e2e/generator/generate.go View File

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


Loading…
Cancel
Save