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

19 lines
333 B
Go
Raw Normal View History

2022-09-07 13:25:57 -07:00
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
}