e2e: use more simple strings for generated transactions (#7513)

This commit is contained in:
Sam Kleinman
2022-01-05 12:17:23 -05:00
committed by GitHub
parent 4137c16d3f
commit 8564c5079f
5 changed files with 14 additions and 13 deletions

View File

@@ -64,7 +64,7 @@ type Manifest struct {
QueueType string `toml:"queue_type"`
// Number of bytes per tx. Default is 1kb (1024)
TxSize int64
TxSize int
// ABCIProtocol specifies the protocol used to communicate with the ABCI
// application: "unix", "tcp", "grpc", or "builtin". Defaults to builtin.

View File

@@ -70,7 +70,7 @@ type Testnet struct {
KeyType string
Evidence int
LogLevel string
TxSize int64
TxSize int
ABCIProtocol string
}