Skip to content

Commit

Permalink
Merge PR cosmos#6005: x/params: Raw Parameter Querying
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderbez authored Apr 16, 2020
1 parent 1270adc commit 65234a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app.go
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,7 @@ func NewSimApp(
upgrade.NewAppModule(app.UpgradeKeeper),
evidence.NewAppModule(app.EvidenceKeeper),
ibc.NewAppModule(app.IBCKeeper),
params.NewAppModule(app.ParamsKeeper),
transferModule,
)

Expand Down Expand Up @@ -312,7 +313,7 @@ func NewSimApp(
staking.NewAppModule(app.StakingKeeper, app.AccountKeeper, app.BankKeeper, app.SupplyKeeper),
distr.NewAppModule(app.DistrKeeper, app.AccountKeeper, app.BankKeeper, app.SupplyKeeper, app.StakingKeeper),
slashing.NewAppModule(app.SlashingKeeper, app.AccountKeeper, app.BankKeeper, app.StakingKeeper),
params.NewAppModule(), // NOTE: only used for simulation to generate randomized param change proposals
params.NewAppModule(app.ParamsKeeper),
)

app.sm.RegisterStoreDecoders()
Expand Down

0 comments on commit 65234a8

Please sign in to comment.