Fix simapp compilation
This commit is contained in:
parent
83da652ac6
commit
4d3d387fe2
|
@ -310,7 +310,7 @@ func NewSimApp(
|
|||
authtypes.NewModuleAddress(govtypes.ModuleName).String(),
|
||||
)
|
||||
app.StakingKeeper = stakingkeeper.NewKeeper(
|
||||
appCodec, keys[stakingtypes.StoreKey], app.AccountKeeper, app.BankKeeper, authtypes.NewModuleAddress(govtypes.ModuleName).String(),
|
||||
appCodec, keys[stakingtypes.StoreKey], app.AccountKeeper, app.BankKeeper, nil, authtypes.NewModuleAddress(govtypes.ModuleName).String(),
|
||||
)
|
||||
app.MintKeeper = mintkeeper.NewKeeper(appCodec, keys[minttypes.StoreKey], app.StakingKeeper, app.AccountKeeper, app.BankKeeper, authtypes.FeeCollectorName, authtypes.NewModuleAddress(govtypes.ModuleName).String())
|
||||
|
||||
|
|
|
@ -56,6 +56,7 @@ func (s *KeeperTestSuite) SetupTest() {
|
|||
key,
|
||||
accountKeeper,
|
||||
bankKeeper,
|
||||
nil,
|
||||
authtypes.NewModuleAddress(govtypes.ModuleName).String(),
|
||||
)
|
||||
keeper.SetParams(ctx, stakingtypes.DefaultParams())
|
||||
|
|
Loading…
Reference in New Issue