mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
37 lines
1.0 KiB
Go
37 lines
1.0 KiB
Go
package savings
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/0glabs/0g-chain/x/savings/keeper"
|
|
"github.com/0glabs/0g-chain/x/savings/types"
|
|
)
|
|
|
|
// InitGenesis initializes genesis state
|
|
func InitGenesis(ctx sdk.Context, k keeper.Keeper, ak types.AccountKeeper, gs types.GenesisState) {
|
|
if err := gs.Validate(); err != nil {
|
|
panic(fmt.Sprintf("failed to validate %s genesis state: %s", types.ModuleName, err))
|
|
}
|
|
|
|
k.SetParams(ctx, gs.Params)
|
|
|
|
for _, deposit := range gs.Deposits {
|
|
k.SetDeposit(ctx, deposit)
|
|
}
|
|
|
|
// check if the module account exists
|
|
SavingsModuleAccount := ak.GetModuleAccount(ctx, types.ModuleAccountName)
|
|
if SavingsModuleAccount == nil {
|
|
panic(fmt.Sprintf("%s module account has not been set", SavingsModuleAccount))
|
|
}
|
|
}
|
|
|
|
// ExportGenesis returns a GenesisState for a given context and keeper
|
|
func ExportGenesis(ctx sdk.Context, k keeper.Keeper) types.GenesisState {
|
|
params := k.GetParams(ctx)
|
|
deposits := k.GetAllDeposits(ctx)
|
|
return types.NewGenesisState(params, deposits)
|
|
}
|