File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ def __init__(
7979
8080 self ._public = Public (host )
8181 self ._public ._session = self ._session
82+ self ._public .api_timeout = self .api_timeout
8283 self ._private = None
8384 self ._api_keys = None
8485 self ._eth = None
@@ -146,6 +147,7 @@ def private(self):
146147 api_key_credentials = self .api_key_credentials ,
147148 )
148149 self ._private ._session = self ._session
150+ self ._private .api_timeout = self .api_timeout
149151 else :
150152 raise Exception (
151153 'Private endpoints not supported ' +
@@ -168,6 +170,7 @@ def api_keys(self):
168170 default_address = self .default_address ,
169171 )
170172 self ._api_keys ._session = self ._session
173+ self ._api_keys .api_timeout = self .api_timeout
171174 else :
172175 raise Exception (
173176 'API keys module is not supported since no Ethereum ' +
@@ -195,6 +198,7 @@ def onboarding(self):
195198 ),
196199 )
197200 self ._onboarding ._session = self ._session
201+ self ._onboarding .api_timeout = self .api_timeout
198202 else :
199203 raise Exception (
200204 'Onboarding is not supported since no Ethereum ' +
You can’t perform that action at this time.
0 commit comments