Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
barak manos committed May 24, 2024
1 parent c0d5ea0 commit 93abd1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane_bot/modes/pairwise_multi_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def get_combos(self) -> List[Any]:
def get_curve_combos(self, CC: Any) -> List[Any]:
carbon_curves = [x for x in CC.curves if x.params.exchange in self.ConfigObj.CARBON_V1_FORKS]
non_carbon_curves = [x for x in CC.curves if x.params.exchange not in self.ConfigObj.CARBON_V1_FORKS]
curve_combos = [[_curve0] + [_curve1] for _curve0 in non_carbon_curves for _curve1 in non_carbon_curves if (_curve0 != _curve1)]
curve_combos = [[_curve0] + [_curve1] for _curve0 in non_carbon_curves for _curve1 in non_carbon_curves if _curve0 != _curve1]

if len(carbon_curves) > 0:
base_direction_pair = carbon_curves[0].pair
Expand Down

0 comments on commit 93abd1d

Please sign in to comment.