scaffold new auction tx

This commit is contained in:
2022-08-27 21:19:03 +00:00
parent 9a08bf8989
commit ef35b58e10
19 changed files with 1165 additions and 22 deletions

View File

@@ -0,0 +1,17 @@
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
}