mirror of
https://github.com/planetmint/planetmint-go.git
synced 2025-06-02 04:06:38 +00:00
18 lines
404 B
Go
18 lines
404 B
Go
package keeper
|
|
|
|
import (
|
|
"context"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/planetmint/planetmint-go/x/dao/types"
|
|
)
|
|
|
|
func (k msgServer) ReissueRDDLResult(goCtx context.Context, msg *types.MsgReissueRDDLResult) (*types.MsgReissueRDDLResultResponse, error) {
|
|
ctx := sdk.UnwrapSDKContext(goCtx)
|
|
|
|
// TODO: Handling the message
|
|
_ = ctx
|
|
|
|
return &types.MsgReissueRDDLResultResponse{}, nil
|
|
}
|