Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
barak manos committed May 27, 2024
1 parent 17e04f8 commit 2e0ada6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fastlane_bot/modes/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ def __init__(self, flashloan_tokens, CCm, ConfigObj):
self.flashloan_tokens = flashloan_tokens
self.CCm = CCm
self.ConfigObj = ConfigObj
self.exchanges = ["bancor_v2", "bancor_v3"] + ConfigObj.UNI_V2_FORKS + ConfigObj.UNI_V3_FORKS
self.sort_order = {key: index for index, key in enumerate(self.exchanges)}
self.sort_order = {key: index for index, key in enumerate(["bancor_v2", "bancor_v3"] + ConfigObj.UNI_V2_FORKS + ConfigObj.UNI_V3_FORKS)}

def find_combos(self) -> List[Any]:
return self.find_arbitrage()["combos"]
Expand Down

0 comments on commit 2e0ada6

Please sign in to comment.