board now uses sha256
This commit is contained in:
parent
24d682860f
commit
71c9337ab7
6 changed files with 16 additions and 8 deletions
|
@ -89,7 +89,7 @@ def show_details():
|
|||
details = {
|
||||
'Node Address' : gethostname.get_hostname(),
|
||||
'Web Password' : config.get('client.webpassword'),
|
||||
'Public Key' : onionrcrypto.pub_key,
|
||||
'Public Key' : onionrcrypto.pub_key.replace('=', ''),
|
||||
'Human-readable Public Key' : mnemonickeys.get_human_readable_ID()
|
||||
}
|
||||
|
||||
|
|
|
@ -39,4 +39,5 @@ def set_data(data)->str:
|
|||
else:
|
||||
raise onionrexceptions.DataExists("Data is already set for " + dataHash)
|
||||
|
||||
return dataHash
|
||||
print(dataHash, nonce_hash)
|
||||
return dataHash
|
||||
|
|
|
@ -6,4 +6,4 @@ def check_ui(test_manager):
|
|||
if not result: raise ValueError
|
||||
result = result.lower()
|
||||
if not 'onionr' in result and not 'Onionr' in result:
|
||||
raise ValueError
|
||||
raise ValueError
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue