Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix struct field name in comment #7740

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e/testsuite/testconfig.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func getChainImage(binary string) string {
type TestConfig struct {
// ChainConfigs holds configuration values related to the chains used in the tests.
ChainConfigs []ChainConfig `yaml:"chains"`
// RelayerConfig holds all known relayer configurations that can be used in the tests.
// RelayerConfigs holds all known relayer configurations that can be used in the tests.
RelayerConfigs []relayer.Config `yaml:"relayers"`
// ActiveRelayer specifies the relayer that will be used. It must match the ID of one of the entries in RelayerConfigs.
ActiveRelayer string `yaml:"activeRelayer"`
Expand Down
2 changes: 1 addition & 1 deletion modules/light-clients/08-wasm/types/gas_register.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ type WasmGasRegisterConfig struct {
// See also https://github.com/CosmWasm/wasmd/issues/1798 for more thinking around
// discount cases.
InstanceCostDiscount storetypes.Gas
// CompileCosts costs to persist and "compile" a new wasm contract
// CompileCost costs to persist and "compile" a new wasm contract
CompileCost storetypes.Gas
// UncompressCost costs per byte to unpack a contract
UncompressCost wasmvmtypes.UFraction
Expand Down
Loading