1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-15 19:08:07 +00:00

Fixed load_device_by_xprv

This commit is contained in:
slush0 2014-03-07 21:44:06 +01:00
parent da6ce3acb8
commit 099cdd2578

View File

@ -510,7 +510,7 @@ class ProtocolMixin(object):
@field('message')
@expect(proto.Success)
def load_device_by_xprv(self, xprv, pin, passphrase_protection, label):
def load_device_by_xprv(self, xprv, pin, passphrase_protection, label, language):
if self.features.initialized:
raise Exception("Device is initialized already. Call wipe_device() and try again.")
@ -547,7 +547,7 @@ class ProtocolMixin(object):
resp = self.call(proto.LoadDevice(node=node,
pin=pin,
passphrase_protection=passphrase_protection,
language='english',
language=language,
label=label))
self.init_device()
return resp