Skip to content

Commit

Permalink
fix(simapp): fix example config template (#17587)
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt authored Aug 31, 2023
1 parent ac64612 commit 9c7624d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simapp/simd/cmd/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ func initAppConfig() (string, interface{}) {
customAppTemplate := serverconfig.DefaultConfigTemplate + `
[wasm]
# This is the maximum sdk gas (wasm and storage) that we allow for any x/wasm "smart" queries
query_gas_limit = 300000
query_gas_limit = {{ .WASM.QueryGasLimit }}
# This is the number of wasm vm instances we keep cached in memory for speed-up
# Warning: this is currently unstable and may lead to crashes, best to keep for 0 unless testing locally
lru_size = 0`
lru_size = {{ .WASM.LruSize }}`

return customAppTemplate, customAppConfig
}
Expand Down

0 comments on commit 9c7624d

Please sign in to comment.