* changed how new communicator uses bootstrap (untested)

+ added function to calculate human readable strings from hex
This commit is contained in:
Kevin Froman 2018-07-03 03:18:07 -05:00
parent efb049fddd
commit f1c8c8b843
No known key found for this signature in database
GPG key ID: 0D414D0FE405B63B
4 changed files with 329 additions and 8 deletions

View file

@ -623,6 +623,7 @@ class Onionr:
'Onionr Daemon Status' : ((logger.colors.fg.green + 'Online') if self.onionrUtils.isCommunicatorRunning(timeout = 2) else logger.colors.fg.red + 'Offline'),
'Public Key' : self.onionrCore._crypto.pubKey,
'POW Token' : powToken,
'Human readable public key' : self.onionrCore._utils.getHumanReadableID(),
'Combined' : self.onionrCore._crypto.pubKey + '-' + powToken,
'Node Address' : self.get_hostname(),