mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
9170090f67
* implement savings hooks types * implement saving hooks keeper * add savings hooks to app.go + implement incentive type compliance
25 lines
674 B
Go
25 lines
674 B
Go
package keeper
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/kava-labs/kava/x/savings/types"
|
|
)
|
|
|
|
// Implements StakingHooks interface
|
|
var _ types.SavingsHooks = Keeper{}
|
|
|
|
// AfterSavingsDepositCreated - call hook if registered
|
|
func (k Keeper) AfterSavingsDepositCreated(ctx sdk.Context, deposit types.Deposit) {
|
|
if k.hooks != nil {
|
|
k.hooks.AfterSavingsDepositCreated(ctx, deposit)
|
|
}
|
|
}
|
|
|
|
// BeforeSavingsDepositModified - call hook if registered
|
|
func (k Keeper) BeforeSavingsDepositModified(ctx sdk.Context, deposit types.Deposit, incomingDenoms []string) {
|
|
if k.hooks != nil {
|
|
k.hooks.BeforeSavingsDepositModified(ctx, deposit, incomingDenoms)
|
|
}
|
|
}
|