File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ import (
1818 basedepinject "cosmossdk.io/x/accounts/defaults/base/depinject"
1919 lockupdepinject "cosmossdk.io/x/accounts/defaults/lockup/depinject"
2020 multisigdepinject "cosmossdk.io/x/accounts/defaults/multisig/depinject"
21- distrkeeper "cosmossdk.io/x/distribution/keeper"
22- slashingkeeper "cosmossdk.io/x/slashing/keeper"
2321 stakingkeeper "cosmossdk.io/x/staking/keeper"
2422 upgradekeeper "cosmossdk.io/x/upgrade/keeper"
2523
@@ -46,10 +44,8 @@ type SimApp[T transaction.Tx] struct {
4644
4745 // required keepers during wiring
4846 // others keepers are all in the app
49- UpgradeKeeper * upgradekeeper.Keeper
50- StakingKeeper * stakingkeeper.Keeper
51- DistrKeeper * distrkeeper.Keeper
52- SlashingKeeper * slashingkeeper.Keeper
47+ UpgradeKeeper * upgradekeeper.Keeper
48+ StakingKeeper * stakingkeeper.Keeper
5349}
5450
5551func init () {
@@ -170,8 +166,6 @@ func NewSimApp[T transaction.Tx](
170166 & app .interfaceRegistry ,
171167 & app .UpgradeKeeper ,
172168 & app .StakingKeeper ,
173- & app .DistrKeeper ,
174- & app .SlashingKeeper ,
175169 ); err != nil {
176170 panic (err )
177171 }
You can’t perform that action at this time.
0 commit comments