scaffold newBid tx

This commit is contained in:
2022-08-28 17:57:06 +00:00
parent 6236887e5c
commit e219d2f42c
19 changed files with 833 additions and 51 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) NewBid(goCtx context.Context, msg *types.MsgNewBid) (*types.MsgNewBidResponse, error) {
ctx := sdk.UnwrapSDKContext(goCtx)
// TODO: Handling the message
_ = ctx
return &types.MsgNewBidResponse{}, nil
}