mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
0714d6120e
* revisions: BAS-01 | Inconsistent Comment * revisions: GEE-01 | Unsorted imports * revisions: KEE-01 | Ambiguous Function Naming * revisions: OPE-01 | Redundant “if” Clause
33 lines
797 B
Go
33 lines
797 B
Go
package swap
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/kava-labs/kava/x/swap/types"
|
|
)
|
|
|
|
// InitGenesis initializes story state from genesis file
|
|
func InitGenesis(ctx sdk.Context, k Keeper, gs types.GenesisState) {
|
|
if err := gs.Validate(); err != nil {
|
|
panic(fmt.Sprintf("failed to validate %s genesis state: %s", ModuleName, err))
|
|
}
|
|
|
|
k.SetParams(ctx, gs.Params)
|
|
for _, pr := range gs.PoolRecords {
|
|
k.SetPool(ctx, pr)
|
|
}
|
|
for _, sh := range gs.ShareRecords {
|
|
k.SetDepositorShares(ctx, sh)
|
|
}
|
|
}
|
|
|
|
// ExportGenesis exports the genesis state
|
|
func ExportGenesis(ctx sdk.Context, k Keeper) types.GenesisState {
|
|
params := k.GetParams(ctx)
|
|
pools := k.GetAllPools(ctx)
|
|
shares := k.GetAllDepositorShares(ctx)
|
|
return types.NewGenesisState(params, pools, shares)
|
|
}
|