We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3609ae commit c1eb9a4Copy full SHA for c1eb9a4
src/erc7730/common/client.py
@@ -117,7 +117,8 @@ def _client() -> Client:
117
http_transport = HTTPTransport()
118
http_transport = GithubTransport(http_transport)
119
http_transport = EtherscanTransport(http_transport)
120
- http_transport = CacheTransport(transport=RetryTransport(http_transport), storage=cache_storage)
+ http_transport = RetryTransport(transport=http_transport)
121
+ http_transport = CacheTransport(transport=http_transport, storage=cache_storage)
122
file_transport = FileTransport()
123
# TODO file storage: authorize relative paths only
124
transports = {"https://": http_transport, "file://": file_transport}
0 commit comments