-
Notifications
You must be signed in to change notification settings - Fork 204
/
hooks.go
46 lines (35 loc) · 1.22 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
43
44
45
46
package keeper
import (
"fmt"
sdk "github.com/cosmos/cosmos-sdk/types"
epochstypes "github.com/Stride-Labs/stride/v10/x/epochs/types"
)
// Before each hour epoch, check if any of the rate limits have expired,
// and reset them if they have
func (k Keeper) BeforeEpochStart(ctx sdk.Context, epochInfo epochstypes.EpochInfo) {
if epochInfo.Identifier == epochstypes.HOUR_EPOCH {
epochHour := uint64(epochInfo.CurrentEpoch)
for _, rateLimit := range k.GetAllRateLimits(ctx) {
if epochHour%rateLimit.Quota.DurationHours == 0 {
err := k.ResetRateLimit(ctx, rateLimit.Path.Denom, rateLimit.Path.ChannelId)
if err != nil {
k.Logger(ctx).Error(fmt.Sprintf("Unable to reset quota for Denom: %s, ChannelId: %s", rateLimit.Path.Denom, rateLimit.Path.ChannelId))
}
}
}
}
}
func (k Keeper) AfterEpochEnd(ctx sdk.Context, epochInfo epochstypes.EpochInfo) {}
type Hooks struct {
k Keeper
}
var _ epochstypes.EpochHooks = Hooks{}
func (k Keeper) Hooks() Hooks {
return Hooks{k}
}
func (h Hooks) BeforeEpochStart(ctx sdk.Context, epochInfo epochstypes.EpochInfo) {
h.k.BeforeEpochStart(ctx, epochInfo)
}
func (h Hooks) AfterEpochEnd(ctx sdk.Context, epochInfo epochstypes.EpochInfo) {
h.k.AfterEpochEnd(ctx, epochInfo)
}