Skip to content

Commit

Permalink
Put the wasm dir back in wasm/wasm. (#2071)
Browse files Browse the repository at this point in the history
* Put the wasm dir back in wasm/wasm.

* Add changelog entry.
  • Loading branch information
SpicyLemon authored Jul 11, 2024
1 parent fae7a8b commit 1f0ffae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ Ref: https://keepachangelog.com/en/1.0.0/
* Add the (empty) `umber-rc2` upgrade [#2069](https://github.com/provenance-io/provenance/pull/2069).
* Update the Swagger API documentation [#2063](https://github.com/provenance-io/provenance/pull/2063).

### Bug Fixes

* Put the location of the wasm directory back to where it is in previous versions: data/wasm/wasm [#2071](https://github.com/provenance-io/provenance/pull/2071).

### Dependencies

- Bump `github.com/hashicorp/go-getter` from 1.7.4 to 1.7.5 ([#2057](https://github.com/provenance-io/provenance/pull/2057))
Expand Down
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ func New(
icqIBCModule := icq.NewIBCModule(app.ICQKeeper)

// Init CosmWasm module
wasmDir := filepath.Join(homePath, "data")
wasmDir := filepath.Join(homePath, "data", "wasm")

wasmWrap := WasmWrapper{Wasm: wasmtypes.DefaultWasmConfig()}
err = viper.Unmarshal(&wasmWrap)
Expand Down

0 comments on commit 1f0ffae

Please sign in to comment.