mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 23:41:35 +00:00
py3: signmessage cmd now again returns str
This commit is contained in:
parent
0a648e2b1c
commit
f69f6a88e0
1 changed files with 1 additions and 1 deletions
|
@ -405,7 +405,7 @@ class Commands:
|
|||
"""Sign a message with a key. Use quotes if your message contains
|
||||
whitespaces"""
|
||||
sig = self.wallet.sign_message(address, message, password)
|
||||
return base64.b64encode(sig)
|
||||
return base64.b64encode(sig).decode('ascii')
|
||||
|
||||
@command('')
|
||||
def verifymessage(self, address, signature, message):
|
||||
|
|
Loading…
Add table
Reference in a new issue