commit 6c203403384724ada56be494fc1c7922e11a3166
parent 0294844c11a4da2b30faba26d4649c2aae24860f
Author: benma <mbencun@gmail.com>
Date: Sat, 8 Dec 2018 17:02:24 +0100
bitbox: fix seed command (#4906)
Entropy required to be 64 bytes.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/electrum/plugins/digitalbitbox/digitalbitbox.py b/electrum/plugins/digitalbitbox/digitalbitbox.py
@@ -309,7 +309,7 @@ class DigitalBitbox_Client():
def dbb_generate_wallet(self):
key = self.stretch_key(self.password)
filename = ("Electrum-" + time.strftime("%Y-%m-%d-%H-%M-%S") + ".pdf")
- msg = ('{"seed":{"source": "create", "key": "%s", "filename": "%s", "entropy": "%s"}}' % (key, filename, 'Digital Bitbox Electrum Plugin')).encode('utf8')
+ msg = ('{"seed":{"source": "create", "key": "%s", "filename": "%s", "entropy": "%s"}}' % (key, filename, to_hexstr(os.urandom(32)))).encode('utf8')
reply = self.hid_send_encrypt(msg)
if 'error' in reply:
raise UserFacingException(reply['error']['message'])