-
Notifications
You must be signed in to change notification settings - Fork 0
/
hooks.go
42 lines (33 loc) · 1.17 KB
/
hooks.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package keeper
import (
sdk "github.com/cosmos/cosmos-sdk/types"
epochstypes "github.com/ingenuity-build/quicksilver/x/epochs/types"
)
func (k Keeper) BeforeEpochStart(ctx sdk.Context, epochIdentifier string, epochNumber int64) error {
if epochIdentifier == "epoch" && epochNumber > 1 {
if err := k.StoreSelfConsensusState(ctx, "epoch"); err != nil {
k.Logger(ctx).Error("unable to store consensus state", "error", err)
return err
}
}
return nil
}
func (k Keeper) AfterEpochEnd(ctx sdk.Context, epochIdentifier string, epochNumber int64) error {
return nil
}
// ___________________________________________________________________________________________________
// Hooks wrapper struct for incentives keeper
type Hooks struct {
k Keeper
}
var _ epochstypes.EpochHooks = Hooks{}
func (k Keeper) Hooks() Hooks {
return Hooks{k}
}
// epochs hooks
func (h Hooks) BeforeEpochStart(ctx sdk.Context, epochIdentifier string, epochNumber int64) error {
return h.k.BeforeEpochStart(ctx, epochIdentifier, epochNumber)
}
func (h Hooks) AfterEpochEnd(ctx sdk.Context, epochIdentifier string, epochNumber int64) error {
return h.k.AfterEpochEnd(ctx, epochIdentifier, epochNumber)
}