mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-31 09:21:39 +00:00
Made the error message for verifymessage more transparent
This commit is contained in:
parent
a2db281494
commit
850d0dcd5f
1 changed files with 2 additions and 1 deletions
3
electrum
3
electrum
|
@ -535,7 +535,8 @@ if __name__ == '__main__':
|
|||
try:
|
||||
wallet.verify_message(address, signature, message)
|
||||
print True
|
||||
except:
|
||||
except BaseException as e:
|
||||
print "Verification error: {0}".format(e)
|
||||
print False
|
||||
|
||||
elif cmd == 'freeze':
|
||||
|
|
Loading…
Add table
Reference in a new issue