gpu-compute-chain/x/colinearcore/keeper/msg_server_lock_funds.go

19 lines
333 B
Go

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
}