NewMsgServerImpl returns an implementation of the market MsgServer interface for the provided Keeper.
(k keeper.Keeper)
| 19 | // NewMsgServerImpl returns an implementation of the market MsgServer interface |
| 20 | // for the provided Keeper. |
| 21 | func NewMsgServerImpl(k keeper.Keeper) types.MsgServer { |
| 22 | return &msgServer{keeper: k} |
| 23 | } |
| 24 | |
| 25 | func (m msgServer) CreateCertificate(goCtx context.Context, req *types.MsgCreateCertificate) (*types.MsgCreateCertificateResponse, error) { |
| 26 | ctx := sdk.UnwrapSDKContext(goCtx) |
no outgoing calls
no test coverage detected