diff --git a/CHANGELOG.md b/CHANGELOG.md index ea25f910a..b9ba14f59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,10 @@ Ref: https://keepachangelog.com/en/1.0.0/ * Update all the proto links in the spec docs to point to `v1.19.0` versions of the proto files [#2068](https://github.com/provenance-io/provenance/pull/2068). * Add the (empty) `umber-rc2` upgrade [#2069](https://github.com/provenance-io/provenance/pull/2069). +### 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)) diff --git a/app/app.go b/app/app.go index 45b753fcc..73dfcabab 100644 --- a/app/app.go +++ b/app/app.go @@ -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)