Skip to content

Commit

Permalink
crypto-org-chain#284: Fix Owtypes & typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cdc-Hitesh committed Jun 22, 2021
1 parent bdbf95d commit d19c60d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/src/transaction/msg/ibc/core/MsgCreateClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const msgCreateClientIBC = function (config: InitConfigurations) {
}

/**
* Returns the raw Msg representation of IBCTransfer
* Returns the raw Msg representation of Ibc.MsgCreateClient
* @returns {Msg}
*/
toRawMsg(): Msg {
Expand Down
4 changes: 2 additions & 2 deletions lib/src/transaction/msg/ow.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,6 @@ export const owMsgTransferIBCOptions = owStrictObject().exactShape({

export const owMsgCreateClientOptions = owStrictObject().exactShape({
signer: ow.string,
clientState: owGoogleProtoAnyOptional(),
consensusState: owGoogleProtoAnyOptional(),
clientState: ow.optional.any(owGoogleProtoAnyOptional(), ow.null),
consensusState: ow.optional.any(owGoogleProtoAnyOptional(), ow.null),
});

0 comments on commit d19c60d

Please sign in to comment.