We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1ab2a3 commit 1447386Copy full SHA for 1447386
pkg/types/types.go
@@ -167,6 +167,8 @@ func (s *LoadTestSpec) UnmarshalYAML(unmarshal func(interface{}) error) error {
167
GasDenom string `yaml:"gas_denom"`
168
Bech32Prefix string `yaml:"bech32_prefix"`
169
Msgs []LoadTestMsg `yaml:"msgs"`
170
+ UnorderedTxs bool `yaml:"unordered_txs"`
171
+ TxTimeout time.Duration `yaml:"tx_timeout"`
172
}
173
174
var aux LoadTestSpecAux
@@ -184,6 +186,8 @@ func (s *LoadTestSpec) UnmarshalYAML(unmarshal func(interface{}) error) error {
184
186
GasDenom: aux.GasDenom,
185
187
Bech32Prefix: aux.Bech32Prefix,
188
Msgs: aux.Msgs,
189
+ UnorderedTxs: aux.UnorderedTxs,
190
+ TxTimeout: aux.TxTimeout,
191
192
193
return nil
0 commit comments