Skip to content
Open
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 injective-chain/modules/tokenfactory/types/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ var (
KeyDenomCreationFee = []byte("DenomCreationFee")
)

// ParamTable for tokenfactory module.
// ParamKeyTable for tokenfactory module.
func ParamKeyTable() paramtypes.KeyTable {
return paramtypes.NewKeyTable().RegisterParamSet(&Params{})
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func (e *FeeState) SetBackupFilePath(backupFilePath string) {
e.backupFilePath = backupFilePath
}

// startBlock is executed at the start of each block and is responsible for resetting the state
// StartBlock is executed at the start of each block and is responsible for resetting the state
// of the CurBaseFee when the node reaches the reset interval
func (e *FeeState) StartBlock(logger log.Logger, height int64) {
e.currentBlockHeight = height
Expand Down
2 changes: 1 addition & 1 deletion injective-chain/wasmbinding/query_plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ func StargateQuerier(
}
}

// ConvertProtoToJsonMarshal unmarshals the given bytes into a proto message and then marshals it to json.
// ConvertProtoToJSONMarshal unmarshals the given bytes into a proto message and then marshals it to json.
// This is done so that clients calling stargate queries do not need to define their own proto unmarshalers,
// being able to use response directly by json marshalling, which is supported in cosmwasm.
func ConvertProtoToJSONMarshal(cdc codec.Codec, protoResponse proto.Message, bz []byte) ([]byte, error) {
Expand Down
2 changes: 1 addition & 1 deletion interchaintest/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func injectiveEncoding() *cosmtestutil.TestEncodingConfig {
return &cfg
}

// injectiveChainConfig returns dynamic config for injective chains, allowing to inject genesis overrides
// InjectiveChainConfig returns dynamic config for injective chains, allowing to inject genesis overrides
func InjectiveChainConfig(
genesisOverrides ...cosmos.GenesisKV,
) ibc.ChainConfig {
Expand Down