diff --git a/.github/workflows/ci-lint.yml b/.github/workflows/ci-lint.yml index 66ba6a45ca..e7190681eb 100644 --- a/.github/workflows/ci-lint.yml +++ b/.github/workflows/ci-lint.yml @@ -15,7 +15,7 @@ jobs: uses: tj-actions/changed-files@v42 with: files: | - **/*.go + *.go - name: Debug Changed Files run: | diff --git a/.github/workflows/proto.yml b/.github/workflows/proto.yml index b1dc2051ee..07ab7caac4 100644 --- a/.github/workflows/proto.yml +++ b/.github/workflows/proto.yml @@ -3,6 +3,9 @@ name: Protobuf Checks on: workflow_call: +# fix this too + + jobs: check-proto: name: "Check Proto" diff --git a/app/app.go b/app/app.go index 536bf6b1c9..b71f595518 100644 --- a/app/app.go +++ b/app/app.go @@ -981,6 +981,7 @@ func NewApp( minttypes.ModuleName, ibcexported.ModuleName, evidencetypes.ModuleName, + authz.ModuleName, ibctransfertypes.ModuleName, evmtypes.ModuleName, diff --git a/app/genesis.go b/app/genesis.go index 87596284ef..ae68c6e2a1 100644 --- a/app/genesis.go +++ b/app/genesis.go @@ -10,5 +10,6 @@ type GenesisState map[string]json.RawMessage // NewDefaultGenesisState generates the default state for the application. func NewDefaultGenesisState() GenesisState { encCfg := MakeEncodingConfig() + return ModuleBasics.DefaultGenesis(encCfg.Marshaler) }