diff --git a/x/liquidstake/keeper/hooks.go b/x/liquidstake/keeper/hooks.go deleted file mode 100644 index 44fe49d27..000000000 --- a/x/liquidstake/keeper/hooks.go +++ /dev/null @@ -1,22 +0,0 @@ -package keeper - -import ( - sdk "github.com/cosmos/cosmos-sdk/types" - govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" -) - -// Wrapper struct -type Hooks struct { - k Keeper -} - -var _ govtypes.GovHooks = Hooks{} - -// Create new distribution hooks -func (k Keeper) Hooks() Hooks { return Hooks{k} } - -func (h Hooks) AfterProposalSubmission(_ sdk.Context, _ uint64) {} -func (h Hooks) AfterProposalDeposit(_ sdk.Context, _ uint64, _ sdk.AccAddress) {} -func (h Hooks) AfterProposalVote(_ sdk.Context, _ uint64, _ sdk.AccAddress) {} -func (h Hooks) AfterProposalFailedMinDeposit(_ sdk.Context, _ uint64) {} -func (h Hooks) AfterProposalVotingPeriodEnded(_ sdk.Context, _ uint64) {}