13 lines
246 B
Go
13 lines
246 B
Go
package module
|
|
|
|
import (
|
|
"context"
|
|
|
|
"cosmossdk.io/x/feegrant/keeper"
|
|
)
|
|
|
|
func EndBlocker(ctx context.Context, k keeper.Keeper) error {
|
|
// 200 is an arbitrary value, we can change it later if needed
|
|
return k.RemoveExpiredAllowances(ctx, 200)
|
|
}
|