Skip to content

Commit

Permalink
Fix missing line in handler.go
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel committed Oct 28, 2022
1 parent d23a709 commit 2ddb304
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions x/ccv/provider/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ func NewHandler(k keeper.Keeper) sdk.Handler {
case *types.MsgDesignateConsensusKeyForConsumerChain:
res, err := msgServer.DesignateConsensusKeyForConsumerChain(sdk.WrapSDKContext(ctx), msg)
return sdk.WrapServiceResult(ctx, res, err)
default:
return nil, sdkerrors.Wrapf(sdkerrors.ErrUnknownRequest, "unrecognized %s message type: %T", types.ModuleName, msg)
}
}
Expand Down

0 comments on commit 2ddb304

Please sign in to comment.