mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-11 13:29:12 +00:00
17 lines
417 B
Go
17 lines
417 B
Go
package keeper
|
|
|
|
import (
|
|
"github.com/onsonr/hway/x/oracle/types"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
// InitGenesis initializes the middlewares state from a specified GenesisState.
|
|
func (k Keeper) InitGenesis(ctx sdk.Context, state types.GenesisState) {
|
|
}
|
|
|
|
// ExportGenesis exports the middlewares state.
|
|
func (k Keeper) ExportGenesis(ctx sdk.Context) *types.GenesisState {
|
|
return &types.GenesisState{}
|
|
}
|