Skip to content

Commit

Permalink
feat: add support for Ignite (#207)
Browse files Browse the repository at this point in the history
Co-authored-by: Pantani <Pantani>
  • Loading branch information
Pantani authored Nov 18, 2023
1 parent c8846f6 commit 0add7b0
Show file tree
Hide file tree
Showing 9 changed files with 17,308 additions and 23,855 deletions.
7 changes: 7 additions & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ type App struct {

legacyAmino *codec.LegacyAmino
appCodec codec.Codec
txConfig client.TxConfig
interfaceRegistry types.InterfaceRegistry

invCheckPeriod uint
Expand Down Expand Up @@ -262,6 +263,7 @@ func New(
BaseApp: bApp,
legacyAmino: legacyAmino,
appCodec: appCodec,
txConfig: txConfig,
interfaceRegistry: interfaceRegistry,
invCheckPeriod: invCheckPeriod,
keys: keys,
Expand Down Expand Up @@ -748,3 +750,8 @@ func (app *App) SimulationManager() *module.SimulationManager {
func (app *App) InitGenesis(ctx sdk.Context, cdc codec.JSONCodec, genesisData map[string]json.RawMessage) {
app.mm.InitGenesis(ctx, cdc, genesisData)
}

// TxConfig returns App's TxConfig
func (app *App) TxConfig() client.TxConfig {
return app.txConfig
}
Loading

0 comments on commit 0add7b0

Please sign in to comment.