Browse Source

Merge pull request #3054 from SomberNight/py3_signmessage_cmd_str

py3: signmessage cmd return type
seed_v14
ThomasV 7 years ago
committed by GitHub
parent
commit
fcbe00f325
  1. 2
      lib/commands.py

2
lib/commands.py

@ -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…
Cancel
Save