scaffold unlock-funds message

This commit is contained in:
2022-09-08 21:49:56 +00:00
parent 275230dc76
commit 04795f8e9e
12 changed files with 613 additions and 25 deletions

View File

@@ -0,0 +1,17 @@
package keeper
import (
"context"
"colinear/x/colinearcore/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)
func (k msgServer) UnlockFunds(goCtx context.Context, msg *types.MsgUnlockFunds) (*types.MsgUnlockFundsResponse, error) {
ctx := sdk.UnwrapSDKContext(goCtx)
// TODO: Handling the message
_ = ctx
return &types.MsgUnlockFundsResponse{}, nil
}