mirror of
https://github.com/colinear-labs/chain.git
synced 2026-03-07 01:24:25 -08:00
scaffold newBid tx
This commit is contained in:
17
x/cosmostest/keeper/msg_server_new_bid.go
Normal file
17
x/cosmostest/keeper/msg_server_new_bid.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user