Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
Remove panics
Browse files Browse the repository at this point in the history
  • Loading branch information
alpe committed Apr 2, 2020
1 parent 6cf530c commit 76a6980
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions incubator/group/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,19 +68,15 @@ func (a AppModule) ValidateGenesis(bz json.RawMessage) error {
}

func (a AppModule) RegisterRESTRoutes(ctx context.CLIContext, r *mux.Router) {
//rest.RegisterRoutes(ctx, r, ModuleCdc, RouterKey)
// todo: what client functions do we want to support?
panic("implement me")
}

func (a AppModule) GetTxCmd(*codec.Codec) *cobra.Command {
//return cli.GetTxCmd(StoreKey, cdc)
panic("implement me")
return nil
}

func (a AppModule) GetQueryCmd(*codec.Codec) *cobra.Command {
//return cli.GetQueryCmd(StoreKey, cdc)
panic("implement me")
return nil
}

func (a AppModule) InitGenesis(ctx sdk.Context, bz json.RawMessage) []abci.ValidatorUpdate {
Expand Down

0 comments on commit 76a6980

Please sign in to comment.