42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
package keeper
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
)
|
|
|
|
// InitGenesis - Init store state from genesis data
|
|
//
|
|
// CONTRACT: old coins from the FeeCollectionKeeper need to be transferred through
|
|
// a genesis port script to the new fee collector account
|
|
func (ak AccountKeeper) InitGenesis(ctx sdk.Context, data types.GenesisState) {
|
|
ak.SetParams(ctx, data.Params)
|
|
|
|
accounts, err := types.UnpackAccounts(data.Accounts)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
accounts = types.SanitizeGenesisAccounts(accounts)
|
|
|
|
for _, a := range accounts {
|
|
acc := ak.NewAccount(ctx, a)
|
|
ak.SetAccount(ctx, acc)
|
|
}
|
|
|
|
ak.GetModuleAccount(ctx, types.FeeCollectorName)
|
|
}
|
|
|
|
// ExportGenesis returns a GenesisState for a given context and keeper
|
|
func (ak AccountKeeper) ExportGenesis(ctx sdk.Context) *types.GenesisState {
|
|
params := ak.GetParams(ctx)
|
|
|
|
var genAccounts types.GenesisAccounts
|
|
ak.IterateAccounts(ctx, func(account types.AccountI) bool {
|
|
genAccount := account.(types.GenesisAccount)
|
|
genAccounts = append(genAccounts, genAccount)
|
|
return false
|
|
})
|
|
|
|
return types.NewGenesisState(params, genAccounts)
|
|
}
|