From 8669f63c1dd11aa47333ec7e3b7867f84675afa5 Mon Sep 17 00:00:00 2001 From: Hemanth Sai Date: Tue, 5 Mar 2024 01:23:58 +0530 Subject: [PATCH] chore: fix typos in ibctesting package (#5919) Co-authored-by: Damian Nolan Co-authored-by: Carlos Rodriguez --- testing/endpoint.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/endpoint.go b/testing/endpoint.go index 42d896277f9..e1d8282c45f 100644 --- a/testing/endpoint.go +++ b/testing/endpoint.go @@ -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) @@ -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.