Skip to content

Commit

Permalink
Merge pull request #643 from bancorprotocol/main_pol_temp_fix
Browse files Browse the repository at this point in the history
focus the pol to ETH only temp solve multicall
  • Loading branch information
zavelevsky authored May 10, 2024
2 parents 60a52f8 + 26e20e3 commit 1c5d11e
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 1c5d11e

Please sign in to comment.