Commit 9b397f0 1 parent 687866d commit 9b397f0 Copy full SHA for 9b397f0
File tree 1 file changed +2
-8
lines changed
1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,6 @@ import (
18
18
basedepinject "cosmossdk.io/x/accounts/defaults/base/depinject"
19
19
lockupdepinject "cosmossdk.io/x/accounts/defaults/lockup/depinject"
20
20
multisigdepinject "cosmossdk.io/x/accounts/defaults/multisig/depinject"
21
- distrkeeper "cosmossdk.io/x/distribution/keeper"
22
- slashingkeeper "cosmossdk.io/x/slashing/keeper"
23
21
stakingkeeper "cosmossdk.io/x/staking/keeper"
24
22
upgradekeeper "cosmossdk.io/x/upgrade/keeper"
25
23
@@ -46,10 +44,8 @@ type SimApp[T transaction.Tx] struct {
46
44
47
45
// required keepers during wiring
48
46
// 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
53
49
}
54
50
55
51
func init () {
@@ -170,8 +166,6 @@ func NewSimApp[T transaction.Tx](
170
166
& app .interfaceRegistry ,
171
167
& app .UpgradeKeeper ,
172
168
& app .StakingKeeper ,
173
- & app .DistrKeeper ,
174
- & app .SlashingKeeper ,
175
169
); err != nil {
176
170
panic (err )
177
171
}
You can’t perform that action at this time.
0 commit comments