File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/aleph/sdk/client/services Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,15 +20,15 @@ class PortForwarder(BaseService[AllForwarders]):
20
20
def __init__ (self , client ):
21
21
super ().__init__ (client = client )
22
22
23
- async def get_ports (self , address : str ) -> AggregateConfig [AllForwarders ]:
23
+ async def get_address_ports (self , address : str ) -> AggregateConfig [AllForwarders ]:
24
24
result = await self .get_config (address = address )
25
25
return result
26
26
27
- async def get_port (self , item_hash : ItemHash , address : str ) -> Optional [Ports ]:
27
+ async def get_ports (self , item_hash : ItemHash , address : str ) -> Optional [Ports ]:
28
28
"""
29
29
Get Ports Forwarder of Instance / Program / IPFS website from aggregate
30
30
"""
31
- ports_config : AggregateConfig [AllForwarders ] = await self .get_ports (
31
+ ports_config : AggregateConfig [AllForwarders ] = await self .get_address_ports (
32
32
address = address
33
33
)
34
34
You can’t perform that action at this time.
0 commit comments