mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-26 08:15:19 +00:00
25 lines
579 B
Go
25 lines
579 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)
|
||
|
}
|
||
|
|
||
|
// ExportGenesis exports the genesis state
|
||
|
func ExportGenesis(ctx sdk.Context, k Keeper) types.GenesisState {
|
||
|
params := k.GetParams(ctx)
|
||
|
return types.NewGenesisState(params)
|
||
|
}
|