9 lines
302 B
Go
9 lines
302 B
Go
package appmanager
|
|
|
|
// Config represents the configuration options for the app manager.
|
|
type Config struct {
|
|
ValidateTxGasLimit uint64 `mapstructure:"validate-tx-gas-limit"`
|
|
QueryGasLimit uint64 `mapstructure:"query-gas-limit"`
|
|
SimulationGasLimit uint64 `mapstructure:"simulation-gas-limit"`
|
|
}
|