Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ScenarioDefaultOptions = ScenarioOptions{ TotalCount: 0, Throughput: 10, MaxPending: 0, MaxWallets: 0, Rebroadcast: 1, GasLimit: 1000000, BaseFee: 20, TipFee: 2, Bytecodes: "", BytecodesFile: "", Timeout: "", ClientGroup: "", LogTxs: false, }
View Source
var ScenarioDescriptor = scenario.Descriptor{ Name: ScenarioName, Description: "Send deploy transactions", DefaultOptions: ScenarioDefaultOptions, NewScenario: newScenario, }
View Source
var ScenarioName = "deploytx"
Functions ¶
This section is empty.
Types ¶
type ScenarioOptions ¶
type ScenarioOptions struct {
TotalCount uint64 `yaml:"total_count"`
Throughput uint64 `yaml:"throughput"`
MaxPending uint64 `yaml:"max_pending"`
MaxWallets uint64 `yaml:"max_wallets"`
Rebroadcast uint64 `yaml:"rebroadcast"`
GasLimit uint64 `yaml:"gas_limit"`
BaseFee float64 `yaml:"base_fee"`
TipFee float64 `yaml:"tip_fee"`
Bytecodes string `yaml:"bytecodes"`
BytecodesFile string `yaml:"bytecodes_file"`
Timeout string `yaml:"timeout"`
ClientGroup string `yaml:"client_group"`
LogTxs bool `yaml:"log_txs"`
}
Click to show internal directories.
Click to hide internal directories.