2019-06-20 13:37:57 +00:00
|
|
|
package app
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
)
|
|
|
|
|
2019-07-18 17:36:31 +00:00
|
|
|
// The genesis state of the blockchain is represented here as a map of raw json
|
|
|
|
// messages key'd by a identifier string.
|
|
|
|
// The identifier is used to determine which module genesis information belongs
|
|
|
|
// to so it may be appropriately routed during init chain.
|
|
|
|
// Within this application default genesis information is retrieved from
|
|
|
|
// the ModuleBasicManager which populates json from each BasicModule
|
|
|
|
// object provided to it during init.
|
|
|
|
type GenesisState map[string]json.RawMessage
|
2019-06-20 13:37:57 +00:00
|
|
|
|
2019-07-18 17:36:31 +00:00
|
|
|
// NewDefaultGenesisState generates the default state for the application.
|
2019-06-20 13:37:57 +00:00
|
|
|
func NewDefaultGenesisState() GenesisState {
|
2019-07-18 17:36:31 +00:00
|
|
|
return ModuleBasics.DefaultGenesis()
|
2019-06-20 13:37:57 +00:00
|
|
|
}
|