Skip to content

Commit

Permalink
Fix function get_miniverse_combos
Browse files Browse the repository at this point in the history
  • Loading branch information
barak manos authored and platonfloria committed May 23, 2024
1 parent f15b59e commit 024d931
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fastlane_bot/modes/triangle_bancor_v3_two_hop.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,12 +331,12 @@ def get_miniverse_combos(self, combos: Iterable) -> List[Tuple[str, List]]:
continue

bancor_v3_curve_0 = (
self.CCm.bypairs(f"{self.ConfigObj.BNT}/{tkn0}")
self.CCm.bypairs(f"{self.ConfigObj.network.BNT_ADDRESS}/{tkn0}")
.byparams(exchange="bancor_v3")
.curves
)
bancor_v3_curve_1 = (
self.CCm.bypairs(f"{self.ConfigObj.BNT}/{tkn1}")
self.CCm.bypairs(f"{self.ConfigObj.network.BNT_ADDRESS}/{tkn1}")
.byparams(exchange="bancor_v3")
.curves
)
Expand Down

0 comments on commit 024d931

Please sign in to comment.