Skip to content

Commit

Permalink
remove unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
jhernandezb committed Jun 5, 2024
1 parent 2c164b7 commit 5e4d50e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type CustomAppConfig struct {
Oracle oracleconfig.AppConfig `mapstructure:"oracle" json:"oracle"`
}

func CustomconfigTemplate(config wasmtypes.WasmConfig, oracleConfig oracleconfig.AppConfig) string {
func CustomconfigTemplate(config wasmtypes.WasmConfig) string {
return serverconfig.DefaultConfigTemplate + wasmtypes.ConfigTemplate(config) + oracleconfig.DefaultConfigTemplate
}

Expand Down Expand Up @@ -43,5 +43,5 @@ func DefaultConfig() (string, interface{}) {
Oracle: oracleCfg,
}

return CustomconfigTemplate(wasmConfig, customConfig.Oracle), customConfig
return CustomconfigTemplate(wasmConfig), customConfig
}

0 comments on commit 5e4d50e

Please sign in to comment.