Skip to content

Commit

Permalink
chore: msgConnection icon client check remove
Browse files Browse the repository at this point in the history
  • Loading branch information
viveksharmapoudel committed Jan 31, 2024
1 parent 8561523 commit 0876502
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions relayer/chains/icon/tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -306,13 +306,7 @@ func (icp *IconProvider) MsgConnectionOpenTry(msgOpenInit provider.ConnectionInf

func (icp *IconProvider) MsgConnectionOpenAck(msgOpenTry provider.ConnectionInfo, proof provider.ConnectionProof) (provider.RelayerMessage, error) {

// proof from chainB should return clientState of chainB tracking chainA
iconClientState, err := icp.MustReturnIconClientState(proof.ClientState)
if err != nil {
return nil, err
}

clientStateEncode, err := proto.Marshal(iconClientState)
clientStateEncode, err := proto.Marshal(proof.ClientState)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 0876502

Please sign in to comment.