package keeper import ( "context" "colinear/x/colinearcore/types" sdk "github.com/cosmos/cosmos-sdk/types" ) func (k msgServer) LockFunds(goCtx context.Context, msg *types.MsgLockFunds) (*types.MsgLockFundsResponse, error) { ctx := sdk.UnwrapSDKContext(goCtx) // TODO _ = ctx return &types.MsgLockFundsResponse{}, nil }