From ec3ff053565a53a51dfb200b0da8fbc2ab617b73 Mon Sep 17 00:00:00 2001 From: Daniel Wedul Date: Thu, 11 Jul 2024 12:57:44 -0600 Subject: [PATCH] Put the wasm dir back in wasm/wasm. (#2071) * Put the wasm dir back in wasm/wasm. * Add changelog entry. --- CHANGELOG.md | 4 ++++ app/app.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af987841a..acdd2da27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,10 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## [Unreleased] +### 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 c85ee7608..62fb9c27c 100644 --- a/app/app.go +++ b/app/app.go @@ -621,7 +621,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)