Fix x/genutil ExportGenesis

This commit is contained in:
Aleksandr Bezobchuk 2020-03-10 09:41:37 -04:00
parent 9d49fe9c5e
commit f218e4c42d
No known key found for this signature in database
GPG Key ID: 7DAC30FBD99879B0
1 changed files with 2 additions and 2 deletions

View File

@ -90,6 +90,6 @@ func (am AppModule) InitGenesis(ctx sdk.Context, cdc codec.JSONMarshaler, data j
// ExportGenesis returns the exported genesis state as raw bytes for the genutil
// module.
func (am AppModule) ExportGenesis(_ sdk.Context, _ codec.JSONMarshaler) json.RawMessage {
return nil
func (am AppModule) ExportGenesis(_ sdk.Context, cdc codec.JSONMarshaler) json.RawMessage {
return am.DefaultGenesis(cdc)
}