mirror of
https://github.com/colinear-labs/chain.git
synced 2026-03-04 22:14:25 -08:00
scaffold unlock all funds msg
This commit is contained in:
17
x/colinearcore/keeper/msg_server_unlock_all_funds.go
Normal file
17
x/colinearcore/keeper/msg_server_unlock_all_funds.go
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user