Skip to content

Commit

Permalink
Merge branch 'crypto-org-chain#284/ibc-MsgCreateClient' of https://gi…
Browse files Browse the repository at this point in the history
  • Loading branch information
cdc-Hitesh committed Jun 22, 2021
2 parents 475e285 + d19c60d commit ae9445e
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,8 +208,8 @@ 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),
});

export const owMsgUpdateClientOptions = owStrictObject().exactShape({
Expand Down

0 comments on commit ae9445e

Please sign in to comment.