From 9287363430a295e6bd6277c8fe07979a30a8c8a9 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 22:45:19 +0000 Subject: [PATCH] fix: remove fee abstraction module from open api code generation (backport #4319) (#4331) --- changelog.md | 4 ++++ ignite/pkg/cosmosgen/generate_openapi.go | 1 + 2 files changed, 5 insertions(+) diff --git a/changelog.md b/changelog.md index 293134554c..f6e234af2a 100644 --- a/changelog.md +++ b/changelog.md @@ -5,6 +5,10 @@ ### Changes - [#4292](https://github.com/ignite/cli/pull/4292) Bump Cosmos SDK to `v0.50.9` + +### Fixes + +- [#4319](https://github.com/ignite/cli/pull/4319) Remove fee abstraction module from open api code generation - [#4309](https://github.com/ignite/cli/pull/4309) Fix chain id for chain simulations ### Fixes diff --git a/ignite/pkg/cosmosgen/generate_openapi.go b/ignite/pkg/cosmosgen/generate_openapi.go index dd49cc50de..efafcaca83 100644 --- a/ignite/pkg/cosmosgen/generate_openapi.go +++ b/ignite/pkg/cosmosgen/generate_openapi.go @@ -78,6 +78,7 @@ func (g *generator) generateOpenAPISpec(ctx context.Context) error { dir, g.openAPITemplate(), cosmosbuf.ExcludeFiles( + "*/osmosis-labs/fee-abstraction/*", "*/module.proto", "*/testutil/*", "*/testdata/*",