forked from quicksilver-zone/quicksilver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenesis.go
26 lines (21 loc) · 808 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
package participationrewards
import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/quicksilver-zone/quicksilver/x/participationrewards/keeper"
"github.com/quicksilver-zone/quicksilver/x/participationrewards/types"
)
// InitGenesis initializes the capability module's state from a provided genesis
// state.
func InitGenesis(ctx sdk.Context, k *keeper.Keeper, genState types.GenesisState) {
k.SetParams(ctx, genState.Params)
for _, kpd := range genState.ProtocolData {
k.SetProtocolData(ctx, []byte(kpd.Key), kpd.ProtocolData)
}
}
// ExportGenesis returns the capability module's exported genesis.
func ExportGenesis(ctx sdk.Context, k *keeper.Keeper) *types.GenesisState {
return &types.GenesisState{
Params: k.GetParams(ctx),
ProtocolData: k.AllKeyedProtocolDatas(ctx),
}
}