Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
b-gopalswami committed Aug 5, 2024
1 parent e031754 commit c585e4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/ccip-tests/testsetups/ccip.go
Original file line number Diff line number Diff line change
Expand Up @@ -957,12 +957,12 @@ func (o *CCIPTestSetUpOutputs) CheckGasUpdateTransaction(lggr *zerolog.Logger) e

for _, lane := range o.ReadLanes() {
if err := filterGasUpdateEventTxBySource(lane.ForwardLane); err != nil {
return fmt.Errorf("error in filtering gas update transactions in the lane source: %s and destination: %s, error: %v",
return fmt.Errorf("error in filtering gas update transactions in the lane source: %s and destination: %s, error: %w",
lane.ForwardLane.SourceNetworkName, lane.ForwardLane.DestNetworkName, err)
}
if lane.ReverseLane != nil {
if err := filterGasUpdateEventTxBySource(lane.ReverseLane); err != nil {
return fmt.Errorf("error in filtering gas update transactions in the lane source: %s and destination: %s, error: %v",
return fmt.Errorf("error in filtering gas update transactions in the lane source: %s and destination: %s, error: %w",
lane.ReverseLane.SourceNetworkName, lane.ReverseLane.DestNetworkName, err)
}
}
Expand Down

0 comments on commit c585e4f

Please sign in to comment.