digitalbitbox: fixed some more python3 issues

This commit is contained in:
Marko Bencun 2017-09-24 23:59:32 +02:00
parent 952049f74b
commit bece1329cc
1 changed files with 2 additions and 2 deletions

View File

@ -134,7 +134,7 @@ class DigitalBitbox_Client():
"You cannot access your coins or a backup without the password.\r\n" \
"A backup is saved automatically when generating a new wallet.")
if self.password_dialog(msg):
reply = self.hid_send_plain(b'{"password":"' + self.password + '"}')
reply = self.hid_send_plain(b'{"password":"' + self.password + b'"}')
else:
return False
@ -210,7 +210,7 @@ class DigitalBitbox_Client():
def dbb_generate_wallet(self):
key = self.stretch_key(self.password)
filename = b"Electrum-" + time.strftime("%Y-%m-%d-%H-%M-%S") + ".pdf"
filename = ("Electrum-" + time.strftime("%Y-%m-%d-%H-%M-%S") + ".pdf").encode('utf8')
msg = b'{"seed":{"source": "create", "key": "%s", "filename": "%s", "entropy": "%s"}}' % (key, filename, b'Digital Bitbox Electrum Plugin')
reply = self.hid_send_encrypt(msg)
if 'error' in reply: