Skip to content

Commit

Permalink
Merge pull request #31 from BeanstalkFarms/fix/sk/basin
Browse files Browse the repository at this point in the history
fix none array
  • Loading branch information
soilking authored Oct 11, 2024
2 parents 470e9cb + 28fa3e7 commit 18222ee
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 18222ee

Please sign in to comment.