Skip to content

Commit

Permalink
Set proper wasm bytecode size (#4388) (#4391)
Browse files Browse the repository at this point in the history
* new wasm size

* add changelog

(cherry picked from commit ad8f3d1)

Co-authored-by: Nicolas Lara <nicolaslara@gmail.com>
  • Loading branch information
mergify[bot] and nicolaslara authored Feb 22, 2023
1 parent 2e97df7 commit 48e074d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Misc Improvements
* [#4131](https://github.com/osmosis-labs/osmosis/pull/4141) Add GatherValuesFromStorePrefixWithKeyParser function to osmoutils.
* [#4388](https://github.com/osmosis-labs/osmosis/pull/4388) Increase the max allowed contract size for non-proposal contracts to 3MB

### API breaks

Expand Down
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func initReusablePackageInjections() {
// - allow for larger wasm files
func overrideWasmVariables() {
// Override Wasm size limitation from WASMD.
wasmtypes.MaxWasmSize = 2 * 1024 * 1024
wasmtypes.MaxWasmSize = 3 * 1024 * 1024
wasmtypes.MaxProposalWasmSize = wasmtypes.MaxWasmSize
}

Expand Down

0 comments on commit 48e074d

Please sign in to comment.