Skip to content

Commit

Permalink
fix regression from ante test
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt committed Feb 4, 2025
1 parent e1261be commit 21d0642
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -529,25 +529,25 @@ func New(
genutil.NewAppModule(encodingConfig.Codec, app.AuthKeeper, app.StakingKeeper, app, encodingConfig.TxConfig, genutiltypes.DefaultMessageValidator),
auth.NewAppModule(encodingConfig.Codec, app.AuthKeeper, app.AccountsKeeper, nil, nil),
vesting.NewAppModule(app.AuthKeeper, app.BankKeeper),
bankModule{bank.NewAppModule(encodingConfig.Codec, app.BankKeeper, app.AuthKeeper), app.encodingConfig.Codec},
bankModule{bank.NewAppModule(encodingConfig.Codec, app.BankKeeper, app.AuthKeeper), encodingConfig.Codec},
feegrantmodule.NewAppModule(encodingConfig.Codec, app.FeeGrantKeeper, encodingConfig.InterfaceRegistry),
govModule{gov.NewAppModule(encodingConfig.Codec, app.GovKeeper, app.AuthKeeper, app.BankKeeper, app.PoolKeeper), app.encodingConfig.Codec},
mintModule{mint.NewAppModule(encodingConfig.Codec, app.MintKeeper, app.AuthKeeper), app.encodingConfig.Codec},
govModule{gov.NewAppModule(encodingConfig.Codec, app.GovKeeper, app.AuthKeeper, app.BankKeeper, app.PoolKeeper), encodingConfig.Codec},
mintModule{mint.NewAppModule(encodingConfig.Codec, app.MintKeeper, app.AuthKeeper), encodingConfig.Codec},
slashingModule{slashing.NewAppModule(encodingConfig.Codec, app.SlashingKeeper, app.AuthKeeper,
app.BankKeeper, app.StakingKeeper, encodingConfig.InterfaceRegistry, cometService), app.encodingConfig.Codec},
app.BankKeeper, app.StakingKeeper, encodingConfig.InterfaceRegistry, cometService), encodingConfig.Codec},
distr.NewAppModule(encodingConfig.Codec, app.DistrKeeper, app.StakingKeeper),
stakingModule{staking.NewAppModule(encodingConfig.Codec, app.StakingKeeper), app.encodingConfig.Codec},
stakingModule{staking.NewAppModule(encodingConfig.Codec, app.StakingKeeper), encodingConfig.Codec},
evidence.NewAppModule(encodingConfig.Codec, app.EvidenceKeeper, cometService),
authzmodule.NewAppModule(encodingConfig.Codec, app.AuthzKeeper, encodingConfig.InterfaceRegistry),
ibcModule{ibc.NewAppModule(encodingConfig.Codec, app.IBCKeeper), app.encodingConfig.Codec},
ibcModule{ibc.NewAppModule(encodingConfig.Codec, app.IBCKeeper), encodingConfig.Codec},
params.NewAppModule(app.ParamsKeeper),
transfer.NewAppModule(encodingConfig.Codec, app.TransferKeeper),
blob.NewAppModule(encodingConfig.Codec, app.BlobKeeper),
blobstream.NewAppModule(encodingConfig.Codec, app.BlobstreamKeeper), // v1->v1
signal.NewAppModule(app.SignalKeeper),
minfee.NewAppModule(encodingConfig.Codec, app.ParamsKeeper),
// packetforward.NewAppModule(app.PacketForwardKeeper),
icaModule{ica.NewAppModule(encodingConfig.Codec, &app.ICAControllerKeeper, &app.ICAHostKeeper), app.encodingConfig.Codec},
icaModule{ica.NewAppModule(encodingConfig.Codec, &app.ICAControllerKeeper, &app.ICAHostKeeper), encodingConfig.Codec},
)

// order begin block, end block and init genesis
Expand Down

0 comments on commit 21d0642

Please sign in to comment.