-
Notifications
You must be signed in to change notification settings - Fork 5
/
genesis.go
36 lines (29 loc) · 964 Bytes
/
genesis.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
package forwarding
import (
"context"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/noble-assets/forwarding/v2/keeper"
"github.com/noble-assets/forwarding/v2/types"
)
func InitGenesis(ctx context.Context, k *keeper.Keeper, genesis types.GenesisState) {
for _, denom := range genesis.AllowedDenoms {
_ = k.AllowedDenoms.Set(ctx, denom)
}
for channel, count := range genesis.NumOfAccounts {
_ = k.NumOfAccounts.Set(ctx, channel, count)
}
for channel, count := range genesis.NumOfForwards {
_ = k.NumOfForwards.Set(ctx, channel, count)
}
for channel, total := range genesis.TotalForwarded {
_ = k.TotalForwarded.Set(ctx, channel, total)
}
}
func ExportGenesis(ctx sdk.Context, k *keeper.Keeper) *types.GenesisState {
return &types.GenesisState{
AllowedDenoms: k.GetAllowedDenoms(ctx),
NumOfAccounts: k.GetAllNumOfAccounts(ctx),
NumOfForwards: k.GetAllNumOfForwards(ctx),
TotalForwarded: k.GetAllTotalForwarded(ctx),
}
}