@@ -18,10 +18,10 @@ class Client(_Client):
1818 pubkey :bytes
1919 seckey :bytes
2020 def __init__ (self , projectPublicKey :Optional [Union [str , bytes ]]= None , projectSecretKey :Optional [Union [str , bytes ]]= None ,
21- timeWindow :int = 60 , convertNumbers : Optional [ str ] = None , retryCount :int = 10 , retryDelay :Union [int , float ]= 5 ,
22- connectTimeout : Union [ int , float ] = 15 , transferTimeout :Union [int , float ]= 320 , disableCompression :bool = False ,
23- log : Optional [ T_Logger ] = None , signal :Optional [T_Signal ]= None , target :Tuple [str , int ]= ("api.fusionexplorer.io" , 443 ),
24- httpHost : Optional [ str ] = None , ssl :bool = True ) -> None :
21+ timeWindow :int = 60 , retryCount :int = 10 , retryDelay :Union [int , float ]= 5 , connectTimeout : Union [ int , float ] = 15 ,
22+ transferTimeout :Union [int , float ]= 320 , disableCompression :bool = False , log : Optional [ T_Logger ] = None ,
23+ signal :Optional [T_Signal ]= None , target :Tuple [str , int ]= ("api.fusionexplorer.io" , 443 ), httpHost : Optional [ str ] = None ,
24+ ssl :bool = True ) -> None :
2525 super ().__init__ (
2626 protocol = "TCPv4:HTTP:JSONRPC-P" ,
2727 target = target ,
@@ -33,7 +33,6 @@ def __init__(self, projectPublicKey:Optional[Union[str, bytes]]=None, projectSec
3333 httpHost = httpHost ,
3434 disableCompression = disableCompression ,
3535 useBulkRequest = True ,
36- convertNumbers = convertNumbers ,
3736 log = log or Logger ("FusionExplorer" ),
3837 signal = signal ,
3938 )
@@ -103,7 +102,6 @@ def clone(self, **kwargs:Any) -> Client:
103102 "projectPublicKey" : self .pubkey ,
104103 "projectSecretKey" : self .seckey ,
105104 "timeWindow" : self .timeWindow ,
106- "convertNumbers" : self .convertNumbers ,
107105 "retryDelay" : self .retryDelay ,
108106 "retryCount" : self .retryCount ,
109107 "connectTimeout" : self .connectTimeout ,
0 commit comments