Skip to content

Commit

Permalink
fix: tuple error wallets
Browse files Browse the repository at this point in the history
  • Loading branch information
0xBasically committed Sep 11, 2023
1 parent 8bcacf3 commit 420eae5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/exporters/wallets.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
# start: 2020-02-12 first iearn deployment
# start opti: 2022-01-01 an arbitrary start timestamp because the default start is < block 1 on opti and messes things up
if chain.id in [Network.Arbitrum, Network.Optimism]:
start = datetime(2022, 1, 1, tzinfo=timezone.utc),
start = datetime(2022, 1, 1, tzinfo=timezone.utc)
elif Network.Base:
start = datetime(2023, 9, 1, tzinfo=timezone.utc),
start = datetime(2023, 9, 1, tzinfo=timezone.utc)
else:
start = datetime(2020, 2, 12, tzinfo=timezone.utc)

Expand Down

0 comments on commit 420eae5

Please sign in to comment.