Skip to content

Commit

Permalink
Merge branch 'main' into JeancarloBarrios/add-cosmowasm-support
Browse files Browse the repository at this point in the history
  • Loading branch information
JeancarloBarrios committed Dec 31, 2024
2 parents 062d744 + ed29110 commit 8b9270a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
8 changes: 8 additions & 0 deletions .github/mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,11 @@ pull_request_rules:
backport:
branches:
- release/v5.1.x
- name: backport patches to v6.0.x branch
conditions:
- base=main
- label=backport/v6.0.x
actions:
backport:
branches:
- release/v6.0.x
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ func NewRegenApp(logger log.Logger, db dbm.DB, traceStore io.Writer, loadLatest
}
}

return app
app.SetPostHandler(postHandler)

Check failure on line 837 in app/app.go

View workflow job for this annotation

GitHub Actions / build

undefined: postHandler

Check failure on line 837 in app/app.go

View workflow job for this annotation

GitHub Actions / determinism

undefined: postHandler

Check failure on line 837 in app/app.go

View workflow job for this annotation

GitHub Actions / app

undefined: postHandler

Check failure on line 837 in app/app.go

View workflow job for this annotation

GitHub Actions / unit (app)

undefined: postHandler

Check failure on line 837 in app/app.go

View workflow job for this annotation

GitHub Actions / unit (app)

undefined: postHandler

Check failure on line 837 in app/app.go

View workflow job for this annotation

GitHub Actions / unit (app)

undefined: postHandler

Check failure on line 837 in app/app.go

View workflow job for this annotation

GitHub Actions / import-export

undefined: postHandler

Check failure on line 837 in app/app.go

View workflow job for this annotation

GitHub Actions / after-import

undefined: postHandler

Check failure on line 837 in app/app.go

View workflow job for this annotation

GitHub Actions / integration

undefined: postHandler

Check failure on line 837 in app/app.go

View workflow job for this annotation

GitHub Actions / golangci (app)

undefined: postHandler

Check failure on line 837 in app/app.go

View workflow job for this annotation

GitHub Actions / golangci (app)

undefined: postHandler

Check failure on line 837 in app/app.go

View workflow job for this annotation

GitHub Actions / golangci (app)

undefined: postHandler
}

Check failure on line 838 in app/app.go

View workflow job for this annotation

GitHub Actions / build

missing return

Check failure on line 838 in app/app.go

View workflow job for this annotation

GitHub Actions / determinism

missing return

Check failure on line 838 in app/app.go

View workflow job for this annotation

GitHub Actions / app

missing return

Check failure on line 838 in app/app.go

View workflow job for this annotation

GitHub Actions / unit (app)

missing return

Check failure on line 838 in app/app.go

View workflow job for this annotation

GitHub Actions / unit (app)

missing return

Check failure on line 838 in app/app.go

View workflow job for this annotation

GitHub Actions / unit (app)

missing return

Check failure on line 838 in app/app.go

View workflow job for this annotation

GitHub Actions / import-export

missing return

Check failure on line 838 in app/app.go

View workflow job for this annotation

GitHub Actions / after-import

missing return

Check failure on line 838 in app/app.go

View workflow job for this annotation

GitHub Actions / integration

missing return

Check failure on line 838 in app/app.go

View workflow job for this annotation

GitHub Actions / golangci (app)

missing return (typecheck)

Check failure on line 838 in app/app.go

View workflow job for this annotation

GitHub Actions / golangci (app)

missing return) (typecheck)

func (app *RegenApp) setAnteHandler(txConfig client.TxConfig, wasmConfig wasmtypes.WasmConfig, txCounterStoreKey storetypes.StoreKey) {
Expand Down
10 changes: 10 additions & 0 deletions app/client/cli/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,16 @@ func genesisCommand(encodingConfig testutil.TestEncodingConfig, cmds ...*cobra.C
return cmd
}

// genesisCommand builds genesis-related `simd genesis` command. Users may provide application specific commands as a parameter
func genesisCommand(encodingConfig testutil.TestEncodingConfig, cmds ...*cobra.Command) *cobra.Command {

Check failure on line 196 in app/client/cli/root.go

View workflow job for this annotation

GitHub Actions / golangci (app)

`genesisCommand` redeclared in this block (typecheck)
cmd := genutilcli.GenesisCoreCommand(encodingConfig.TxConfig, app.ModuleBasics, app.DefaultNodeHome)

for _, subCmd := range cmds {
cmd.AddCommand(subCmd)
}
return cmd
}

func queryCommand() *cobra.Command {
cmd := &cobra.Command{
Use: "query",
Expand Down

0 comments on commit 8b9270a

Please sign in to comment.