mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-14 03:30:02 +00:00
Fixed enums in WordRequestType
This commit is contained in:
parent
d94b68fd30
commit
dac97ed5b6
6
trezorlib/client.py
Normal file → Executable file
6
trezorlib/client.py
Normal file → Executable file
@ -247,7 +247,7 @@ class TextUIMixin(object):
|
||||
return proto.WordAck(word='\x08')
|
||||
|
||||
# ignore middle column if only 6 keys requested.
|
||||
if msg.type == proto.WordRequestType_Matrix6 and character in ('2', '5', '8'):
|
||||
if msg.type == proto.WordRequestType.Matrix6 and character in ('2', '5', '8'):
|
||||
continue
|
||||
|
||||
if character.isdigit():
|
||||
@ -285,8 +285,8 @@ class TextUIMixin(object):
|
||||
exit()
|
||||
|
||||
def callback_WordRequest(self, msg):
|
||||
if msg.type in (proto.WordRequestType_Matrix9,
|
||||
proto.WordRequestType_Matrix6):
|
||||
if msg.type in (proto.WordRequestType.Matrix9,
|
||||
proto.WordRequestType.Matrix6):
|
||||
return self.callback_RecoveryMatrix(msg)
|
||||
log("Enter one word of mnemonic: ")
|
||||
word = input()
|
||||
|
Loading…
Reference in New Issue
Block a user