mirror of https://github.com/certusone/wasmd.git
12 lines
320 B
Go
12 lines
320 B
Go
package app
|
|
|
|
import "encoding/json"
|
|
|
|
// GenesisState defines a type alias for the Gaia genesis application state.
|
|
type GenesisState map[string]json.RawMessage
|
|
|
|
// NewDefaultGenesisState generates the default state for the application.
|
|
func NewDefaultGenesisState() GenesisState {
|
|
return ModuleBasics.DefaultGenesis()
|
|
}
|