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]):
2020 def __init__ (self , client ):
2121 super ().__init__ (client = client )
2222
23- async def get_ports (self , address : str ) -> AggregateConfig [AllForwarders ]:
23+ async def get_address_ports (self , address : str ) -> AggregateConfig [AllForwarders ]:
2424 result = await self .get_config (address = address )
2525 return result
2626
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 ]:
2828 """
2929 Get Ports Forwarder of Instance / Program / IPFS website from aggregate
3030 """
31- ports_config : AggregateConfig [AllForwarders ] = await self .get_ports (
31+ ports_config : AggregateConfig [AllForwarders ] = await self .get_address_ports (
3232 address = address
3333 )
3434
You can’t perform that action at this time.
0 commit comments