Skip to content

Commit

Permalink
review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
WonderBeat authored Aug 22, 2024
1 parent d5f987d commit b850f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethereumetl/providers/auto.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_provider_from_uri(uri_string: str, timeout=DEFAULT_TIMEOUT, batch=False)
request_kwargs = {'timeout': timeout}
return BatchHTTPProvider(endpoint_uri=uri_fixed, request_kwargs=request_kwargs)
else:
return WebsocketProvider(uri_string, websocket_timeout=timeout)
return WebsocketProvider(endpoint_uri=uri_string, websocket_timeout=timeout)
else:
raise ValueError('Unknown uri scheme {}'.format(uri_string))

0 comments on commit b850f36

Please sign in to comment.