Skip to content

Commit

Permalink
golint
Browse files Browse the repository at this point in the history
  • Loading branch information
anhductn2001 committed May 15, 2023
1 parent b2e4e81 commit 62679f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/ibctesting/coordinator.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ func (coord *Coordinator) ConnOpenInitOnBothChains(path *Path) error {
return err
}
err = path.EndpointB.ConnOpenInit()
if err := path.EndpointB.ConnOpenInit(); err != nil {
if err != nil {
return err
}

Expand Down Expand Up @@ -237,7 +237,7 @@ func (coord *Coordinator) ChanOpenInitOnBothChains(path *Path) error {
return err
}
err = path.EndpointB.ChanOpenInit()
if err := path.EndpointB.ConnOpenInit(); err != nil {
if err != nil {
return err
}

Expand Down

0 comments on commit 62679f7

Please sign in to comment.