Skip to content

Commit

Permalink
fix none array
Browse files Browse the repository at this point in the history
  • Loading branch information
soilking committed Oct 11, 2024
1 parent 470e9cb commit 28fa3e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data_access/contracts/eth_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def __init__(self, txn_hash, logs):
self.logs = logs

class EthEventsClient:
def __init__(self, event_client_type, addresses=None):
def __init__(self, event_client_type, addresses=[]):
# Track recently seen txns to avoid processing same txn multiple times.
self._recent_processed_txns = OrderedDict()
self._web3 = get_web3_instance()
Expand Down

0 comments on commit 28fa3e7

Please sign in to comment.