Skip to content

Commit

Permalink
TEMP: focus the pol to ETH only temp solve multicall
Browse files Browse the repository at this point in the history
  • Loading branch information
NIXBNT authored and platonfloria committed May 10, 2024
1 parent 60a52f8 commit 26e20e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane_bot/events/pools/bancor_pol.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def event_matches_format(
"""
event_args = event["args"]
return "token" in event_args and "token0" not in event_args
return ("token" in event_args) and ("token0" not in event_args) and (event_args['token'] == "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE")

def update_from_event(
self, event_args: Dict[str, Any], data: Dict[str, Any]
Expand Down

0 comments on commit 26e20e3

Please sign in to comment.