gpu-compute-chain/x/cosmostest/keeper/msg_server_new_auction.go

18 lines
359 B
Go
Raw Normal View History

2022-08-27 14:19:03 -07:00
package keeper
import (
"context"
"cosmos-test/x/cosmostest/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)
func (k msgServer) NewAuction(goCtx context.Context, msg *types.MsgNewAuction) (*types.MsgNewAuctionResponse, error) {
ctx := sdk.UnwrapSDKContext(goCtx)
// TODO: Handling the message
_ = ctx
return &types.MsgNewAuctionResponse{}, nil
}