Skip to content

Commit

Permalink
chore: fix typos in ibctesting package (#5919)
Browse files Browse the repository at this point in the history
Co-authored-by: Damian Nolan <damiannolan@gmail.com>
Co-authored-by: Carlos Rodriguez <carlos@interchain.io>
  • Loading branch information
3 people committed Mar 4, 2024
1 parent 5e788bb commit 8669f63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions testing/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ func (endpoint *Endpoint) ConnOpenConfirm() error {
func (endpoint *Endpoint) QueryConnectionHandshakeProof() (
clientState exported.ClientState, clientProof,
consensusProof []byte, consensusHeight clienttypes.Height,
connectioProof []byte, proofHeight clienttypes.Height,
connectionProof []byte, proofHeight clienttypes.Height,
) {
// obtain the client state on the counterparty chain
clientState = endpoint.Counterparty.Chain.GetClientState(endpoint.Counterparty.ClientID)
Expand All @@ -312,9 +312,9 @@ func (endpoint *Endpoint) QueryConnectionHandshakeProof() (

// query proof for the connection on the counterparty
connectionKey := host.ConnectionKey(endpoint.Counterparty.ConnectionID)
connectioProof, _ = endpoint.Counterparty.QueryProofAtHeight(connectionKey, proofHeight.GetRevisionHeight())
connectionProof, _ = endpoint.Counterparty.QueryProofAtHeight(connectionKey, proofHeight.GetRevisionHeight())

return clientState, clientProof, consensusProof, consensusHeight, connectioProof, proofHeight
return clientState, clientProof, consensusProof, consensusHeight, connectionProof, proofHeight
}

// ChanOpenInit will construct and execute a MsgChannelOpenInit on the associated endpoint.
Expand Down

0 comments on commit 8669f63

Please sign in to comment.