Add interface for get_list_of_all_pilorama function
This commit is contained in:
parent
a26f8e9c80
commit
8dab9735cf
1 changed files with 3 additions and 0 deletions
|
@ -177,6 +177,9 @@ class StorageNode(NodeBase):
|
||||||
def delete_pilorama(self):
|
def delete_pilorama(self):
|
||||||
self.host.delete_pilorama(self.name)
|
self.host.delete_pilorama(self.name)
|
||||||
|
|
||||||
|
def get_list_of_all_pilorama(self):
|
||||||
|
return self.host.get_list_of_all_pilorama(self.name)
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def label(self) -> str:
|
def label(self) -> str:
|
||||||
return f"{self.name}: {self.get_rpc_endpoint()}"
|
return f"{self.name}: {self.get_rpc_endpoint()}"
|
||||||
|
|
Loading…
Reference in a new issue