scaffold unlock all funds msg

This commit is contained in:
2022-09-08 23:29:08 +00:00
parent 788062b3e6
commit 42bb8112ad
11 changed files with 557 additions and 28 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) UnlockAllFunds(goCtx context.Context, msg *types.MsgUnlockAllFunds) (*types.MsgUnlockAllFundsResponse, error) {
ctx := sdk.UnwrapSDKContext(goCtx)
// TODO: Handling the message
_ = ctx
return &types.MsgUnlockAllFundsResponse{}, nil
}