Skip to content

Commit

Permalink
Fix Setter Name
Browse files Browse the repository at this point in the history
  • Loading branch information
joelsmith-2019 committed Nov 27, 2024
1 parent 4ba9de8 commit 960de92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wormchain/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ func New(
stakingKeeper,
govModAddress,
)
app.WormholeKeeper.SetStakingKeeper(app.SlashingKeeper)
app.WormholeKeeper.SetSlashingKeeper(app.SlashingKeeper)

app.CrisisKeeper = crisiskeeper.NewKeeper(
appCodec,
Expand Down
2 changes: 1 addition & 1 deletion wormchain/x/wormhole/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (k *Keeper) SetUpgradeKeeper(keeper *upgradekeeper.Keeper) {
k.setUpgrade = true
}

func (k *Keeper) SetStakingKeeper(keeper slashingkeeper.Keeper) {
func (k *Keeper) SetSlashingKeeper(keeper slashingkeeper.Keeper) {
k.slashingKeeper = keeper
k.setSlashing = true
}
Expand Down

0 comments on commit 960de92

Please sign in to comment.