added RoutedHost and updated new_node to support it

This commit is contained in:
Alex Haynes
2019-04-20 17:35:05 -04:00
parent 367a939087
commit e7424d3673
6 changed files with 85 additions and 15 deletions

View File

@ -15,6 +15,9 @@ class ID:
def __init__(self, id_str):
self._id_str = id_str
def get_raw_id(self):
return self._id_str
def pretty(self):
return base58.b58encode(self._id_str).decode()